Je crée un comportement d'alias
alias chrome="open -a 'Google Chrome'"
chrome foo.html
Néanmoins, il refuse de fonctionner lorsque je redémarre le terminal.
$ chrome foo.html
-bash: chrome: command not found
Comme solution, je place la commande à ~/.bash_profile
# Add to ~/.bash_profile
# shortcut for chrome
alias chrome="open -a 'Google Chrome'"
Encore une fois, il rapporte une erreur similaire
$ chrome foo.html
-bash: chrome: command not found
Comment résoudre un tel problème ?