Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting "command not found" error in bash script

Tags:

bash

I have written a bash script that gets three paths based on input parameters and then then gets the imagename/filename in the path.

Something like:
I provide:

AA=/home/user

Then it uses the find command to get
/home/user/dir2/images/dir/tellmeimage1fun.bin

Finally I have to get tellmeimage1fun.bin as output.

Script:

#!/bin/bash  

echo "arg0 n/k/d"  

AA=$1  
CC=$3  

PATH1="`find $AA/dir2/images/dir/ -name *image1*.bin`"  
PATH2="`find $AA/dir2/images/dir/ -name *bimage2*.bin`"  
PATH3="`find $AA/dir2/images/dir/ -name *cimage3*.bin`"  

if [ $CC = "n" ] ; then  
    PATH=$PATH1  
elif [ $CC = "k" ] ; then  
    PATH=$PATH2  
else  
    PATH=$PATH3  
fi  

#Getting filename name from path:  
IMG="`ls $PATH | cut -d "/" -f6`"

OUTPUT:  
/users/prasapat/bin/sl5: line 22: ls: command not found  
/users/prasapat/bin/sl5: line 22: cut: command not found  

If I give complete paths to ls and cut they work. But i don't want to do that for all commands in the script. If i remove the last line and echo the PATH variable it is completely fine. Only after adding the last command, I see the problem.

What am I doing wrongly?

like image 620
Pkp Avatar asked Apr 12 '11 22:04

Pkp


2 Answers

The problem is that you are redefining the PATH variable where bash looks into to find the binary files if you don't use a complete path when calling.

You should change the PATH in your bash script to MYPATH or something like that, so that it doesn't mess with the already environmental variables.

If you don't know what the PATH variable is for you can look at wikipedia's article

like image 84
Santiago Alessandri Avatar answered Sep 21 '22 07:09

Santiago Alessandri


I had this problem, turns out editing a bash script using Notepad++ was adding DOS line endings instead of UNIX line endings. Running the script in a Linux environment was causing the 'command not found' error to be thrown.

Managed to diagnose the problem by running my script like so:

bash -x testscript.sh

Which will dump any compiler output. The error message that gets thrown is:

bash -x testscript.sh
+ $'\r'
: command not found 2:
'estscript.sh: line 3: syntax error near unexpected token `{

I fixed the issue by changing the formatting of line endings in Notepad++ to be UNIX not DOS by going Edit -> EOL Conversion -> UNIX.

like image 21
Tom Walsh Avatar answered Sep 24 '22 07:09

Tom Walsh