bash: qmb8.sh: No such file or directory - The-Bioinformatics-Group/Albiorix GitHub Wiki

Sometimes the system does not recognise the command you are giving, although the desired program is installed and you are typing the command correctly:

[mtop@albiorix ~]$ qmb8.sh tic20.nex
-bash: qmb8.sh: No such file or directory

First thing to check is that you have "/usr/local/bin" in your path:

[mtop@albiorix ~]$ echo $PATH
/bin:/usr/bin:/usr/sbin:/sbin:/opt/bio/ncbi/bin

If you don't find "/usr/local/bin" in the list produced by this command, then execute the following commands:

[mtop@albiorix ~]$ echo "PATH=$PATH:/usr/local/bin" >> ~/.bashrc
[mtop@albiorix ~]$ touch ~/.bashrc

...and the problem should be solved.