which-&which-version; and alternatives The presence / absence of the which program in the main LFS book is probably one of the most contentious issues we have on the mailing lists. It has resulted in at least one flame war in the recent past. To hopefully put an end to this once and for all, we here present two of the options for equipping your system with "which". The question of which "which" is for you to decide. The first option is to install the actual GNU program which. &which-intro; &which-inst; &which-desc; The 'which' script The second option (for those who don't want to install the program) is to create a simple script: cat > /usr/bin/which << "EOF" #!/bin/bash type -pa "$@" | head -n 1 ; exit ${PIPESTATUS[0]} EOF chmod 755 /usr/bin/which chown root:root /usr/bin/which This should generally work OK and is probably the easiest solution for boxes which don't need a good user environment to work in.