echo $(dirname $0)
ou
echo ${0%/*}
Eu preciso escrever um script, que seria chamado de qualquer lugar, mas precisa ser executado a partir do diretório em que reside. O script deve consultar seu diretório em tempo de execução.
Como isso pode ser alcançado?
Exemplo:
hello.sh
reside em /someplace/
/other/place/
, /someplace
EDITAR
Pergunta adicional:
Como é a localização do script, mas com o symlink resolvido?
Exemplo:
hello.sh
reside em /someplace/
/bin
/other/place/
/someplace
Para minha pergunta adicional: Achei que isso funcionasse:
echo $(dirname $(readlink $0))
ou
echo 'dirname \'readlink $0\''
EDIT
Parece que esta resposta veio ao mesmo tempo em que Dennis Williamson comentou sua resposta com a solução;)
Confira a variável do shell $ _
Do bash manpage:
At shell startup, set to the absolute pathname used to invoke the shell or shell script being executed as passed in the environment or argument list. Subsequently, expands to the last argument to the previous command, after expansion. Also set to the full pathname used to invoke each command executed and placed in the environment exported to that command. When checking mail, this parameter holds the name of the mail file currently being checked.
Tags command-line bash linux path script