如何找到我正在执行的tcsh shell脚本的位置?

时间:2010-04-01 20:04:09

标签: path shell directory tcsh

假设我在/path/to/my_script.csh

中放了一个可执行的tcsh文件

我当前的目录就在任何地方,例如我在/ path

所以我输入/ my_script.csh

我想在my_script.csh中有一行返回“/path/to/my_script.csh” - 就像ruby的

__FILE__

4 个答案:

答案 0 :(得分:9)

在c shell中,尝试这样:

set rootdir = `dirname $0`
set abs_rootdir = `cd $rootdir && pwd`
echo $abs_rootdir

答案 1 :(得分:8)

如果您想确保相同的结果(完整路径和脚本名称),请尝试以下方法:

...
rootdir=`/bin/dirname $0`       # may be relative path
rootdir=`cd $rootdir && pwd`    # ensure absolute path
zero=$rootdir/`/bin/basename $0`
echo $zero
...

然后你可以将它称为foo.sh,。/ foo.sh,some / lower / dir / foo.sh,无论如何调用它都会得到相同的结果。

答案 2 :(得分:1)

#!/bin/tcsh
echo "I am $0."

答案 3 :(得分:0)

如果你想要一个绝对路径,那么这应该可以帮助你:

#!/bin/tcsh -f 
set called=($_)

if ( "$called" != "" ) then  ### called by source 
   echo "branch 1"
   set script_fn=`readlink -f $called[2]`
else                         ### called by direct excution of the script
   echo "branch 2"
   set script_fn=`readlink -f $0`
endif

echo "A:$0"
echo "B:$called"
set script_dir=`dirname $script_fn`

echo "script file name=$script_fn"
echo "script dir=$script_dir"

来源:http://tipsarea.com/2013/04/11/how-to-get-the-script-path-name-in-cshtcsh/