标签:style blog http color ar java for strong sp
$SHELL gives the full path to your default shell.
$0 gives the name of your current shell.
dirname是一个命令,获取指定文件的路径
dirname voctrals/test.sh 的结果是voctrals。
现在就可以解释cd `dirname $0`了。
进入所运行的shell的目录,这样一来就可以查看目录下的其它文件了,如source。
source用于引入一个shell文件,类似于java的import或者ruby的require
他有一个等效的写法就是一个点,"."。
basename,他的功能是输出当前shell的名称。。。
bash中方法定义函数的格式
outinfo () { D=$(date ‘+%F %T‘) echo "<$D>[INFO]${1}" }
调用方法时: outinfo "something for out";
下面的分号;可能很管用。。。
if methodcall parameter; then if body fi
if条件判断参照: Other Comparison Operators
标签:style blog http color ar java for strong sp
原文地址:http://www.cnblogs.com/voctrals/p/4043849.html