Creo un comportamiento de alias
alias chrome="open -a 'Google Chrome'"
chrome foo.html
Sin embargo, se niega a funcionar cuando reinicio el terminal.
$ chrome foo.html
-bash: chrome: command not found
Como solución, coloco el comando en ~/.bash_profile
# Add to ~/.bash_profile
# shortcut for chrome
alias chrome="open -a 'Google Chrome'"
De nuevo, informa de un error similar
$ chrome foo.html
-bash: chrome: command not found
¿Cómo resolver tal problema?