ฉันมี debian บีบ amd64 เปลือกปัจจุบันของฉันคือทุบตี ถ้าฉันเขียนสิ่งต่อไปนี้ในเครื่องเทอร์มินัลมันใช้งานได้
$ 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
ฉันจะใช้คำสั่ง realpath ภายในไฟล์ bash ได้อย่างไร
ข้อมูลเพิ่มเติม
$ 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"
}