码迷,mamicode.com
首页 > 系统相关 > 详细

Linux dirname $0 source if

时间:2014-10-22 19:56:15      阅读:311      评论:0      收藏:0      [点我收藏+]

标签: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

 

Linux dirname $0 source if

标签:style   blog   http   color   ar   java   for   strong   sp   

原文地址:http://www.cnblogs.com/voctrals/p/4043849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!