You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@singa.apache.org by di...@apache.org on 2015/11/30 06:24:44 UTC

incubator-singa git commit: [SINGA-101] Add ll (ls -l) command in .bashrc file when using docker

Repository: incubator-singa
Updated Branches:
  refs/heads/master b2cfa17b8 -> 71819abab


[SINGA-101] Add ll (ls -l) command in .bashrc file when using docker


Project: http://git-wip-us.apache.org/repos/asf/incubator-singa/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-singa/commit/71819aba
Tree: http://git-wip-us.apache.org/repos/asf/incubator-singa/tree/71819aba
Diff: http://git-wip-us.apache.org/repos/asf/incubator-singa/diff/71819aba

Branch: refs/heads/master
Commit: 71819ababfbbe30156aacce26559a14fa67f8ebe
Parents: b2cfa17
Author: yantangzhai <ha...@tencent.com>
Authored: Mon Nov 30 11:21:18 2015 +0800
Committer: yantangzhai <ha...@tencent.com>
Committed: Mon Nov 30 11:21:18 2015 +0800

----------------------------------------------------------------------
 tool/docker/mesos/.bashrc | 4 ++++
 tool/docker/singa/.bashrc | 4 ++++
 2 files changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/71819aba/tool/docker/mesos/.bashrc
----------------------------------------------------------------------
diff --git a/tool/docker/mesos/.bashrc b/tool/docker/mesos/.bashrc
index 407fd65..7f354eb 100644
--- a/tool/docker/mesos/.bashrc
+++ b/tool/docker/mesos/.bashrc
@@ -6,5 +6,9 @@ export HADOOP_HOME=/opt/hadoop-2.6.0
 export PATH=$PATH:$HADOOP_HOME/bin:$HADOOP_HOME/sbin
 export JAVA_HOME=/opt/jdk1.8.0_60
 alias ls="ls --color=always"
+# some more ls aliases
+alias ll="ls -alF"
+alias la="ls -A"
+alias l="ls -CF"
 export SINGA_HOME=/root/incubator-singa
 export PATH=$PATH:$SINGA_HOME/bin

http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/71819aba/tool/docker/singa/.bashrc
----------------------------------------------------------------------
diff --git a/tool/docker/singa/.bashrc b/tool/docker/singa/.bashrc
index 40ebe41..3d5ad6c 100644
--- a/tool/docker/singa/.bashrc
+++ b/tool/docker/singa/.bashrc
@@ -6,3 +6,7 @@ export JAVA_HOME=/opt/jdk1.8.0_60
 export SINGA_HOME=/root/incubator-singa
 export PATH=$PATH:$SINGA_HOME/bin
 alias ls="ls --color=always"
+# some more ls aliases
+alias ll="ls -alF"
+alias la="ls -A"
+alias l="ls -CF"