Faça o link físico para o restore.sh
:
ln restore.sh link_to_restore.sh
O conteúdo do arquivo restore.sh
:
#!/bin/bash
if [ "$0" = "./link_to_restore.sh" ]; then
echo foo
elif [ "$0" = "./restore.sh" ]; then
echo bar
fi
Teste
$ ./restore.sh
bar
$ ./link_to_restore.sh
foo