Ho debian squeeze amd64. La mia shell attuale è bash. Se scrivo quanto segue nel mio terminale, funziona:
$ 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
Il mio file test.sh è simile al seguente:
#!/bin/bash
echo $(realpath "$1")
Se provo a eseguire quanto segue, viene visualizzato un errore
$ ./test.sh test.sh
./test.sh: line 2: realpath: command not found
Come posso usare il comando realpath all'interno di un file bash?
Informazioni aggiuntive
$ 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"
}