我有debian挤amd64。我当前的shell是bash。如果我在终端中写了以下内容,则可以使用:
$ uname -a
Linux core 2.6.32-5-amd64 #1 SMP Fri May 10 08:43:19 UTC 2013 x86_64 GNU/Linux
$ echo $SHELL
/bin/bash
$ echo $(realpath test.sh)
/home/ffortier/test.sh
我的test.sh文件看起来像这样:
#!/bin/bash
echo $(realpath "$1")
如果我尝试执行以下操作,则会出现错误
$ ./test.sh test.sh
./test.sh: line 2: realpath: command not found
如何在bash文件中使用realpath命令?
附加信息
$ type -a realpath
realpath is a function
realpath ()
{
f=$@;
if [ -d "$f" ]; then
base="";
dir="$f";
else
base="/$(basename "$f")";
dir=$(dirname "$f");
fi;
dir=$(cd "$dir" && /bin/pwd);
echo "$dir$base"
}