Unix
cherche d'abord parmi les fonctions déclarées avant la PATH
:
$ order() { echo "hello from function"; }
$ order
hello from function
$ which order
/usr/bin/which: no order in (all:the:paths)
$ vim order
#!/bin/bash
echo "hello from somewhere"
:wq
$ chmod +x order
$ export PATH=~/:$PATH
$ hash -r
$ which order
~/order
$ order
hello from function
Y a-t-il un moyen de dire unix
pour rechercher dans le PATH
avant les fonctions déclarées ?