rm:command not found in linux Bash shell script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting rm:command not found in linux Bash shell script
# 1  
Old 12-15-2010
rm:command not found in linux Bash shell script

Hi All,

Code:
Linux lxs3er06 2.6.9-67.ELsmp #1 SMP Wed Nov 7 13:58:04 EST 2007 i686 i686 i386 GNU/Linux

Issue:

While executing shell scripts in bash shell, following error messages are thrown:

Code:
rm:command not found

On doing little investigation, I added '/bin' to $PATH and on doing echo $PATH

/bin is shown in $PATH but still the issue exists.

But on adding /bin/rm shell script now works fine without any issues.

But it doesn't work fine without adding /bin/rm as above.

Please advise as to how could we resolve this issue.

Thanks for your time!

Regards,
# 2  
Old 12-15-2010
The running shell will not pick new modified $PATH.
export $PATH and then run script.
OR run script in a new shell/terminal.
# 3  
Old 12-15-2010
Please provide output of
Code:
 echo $PATH

If possible part of script too.

Also as quick solution. u can source your home dir .bashrc and .profile file in your script.
Code:
. /home/usr/.bashrc 
. /home/usr/.profile

This way u will have all your alias / PATH available for script.
# 4  
Old 12-15-2010
I am getting the following error while doing export $PATH
Code:
export $PATH
-bash: export: `/data/R12VIS/apps/tech_st/10.1.3/perl/bin:/data/R12VIS/apps/tech_st/10.1.2/bin:/data/R12VIS/apps/apps_st/appl/fnd/12.0.0/bin:
/data/R12VIS/apps/apps_st/appl/ad/12.0.0/bin:/data/R12VIS/apps/tech_st/10.1.3/appsutil/jdk/jre/bin:
/data/R12VIS/apps/apps_st/comn/util/unzip/unzip::/data/R12VIS/apps/tech_st/10.1.2/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:
/data/R12VIS/apps/tech_st/10.1.3/perl/bin:/data/R12VIS/apps/tech_st/10.1.2/bin:/bin:/data/R12VIS/apps/tech_st/10.1.3/appsutil/jdk/jre/bin:
/data/R12VIS/apps/apps_st/comn/util/unzip/unzip:/data/R12VIS/apps/tech_st/10.1.2/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/kerberos/bin:
/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/data/R12VIS/apps/tech_st/10.1.3/appsutil/jdk/bin:/bin:/home/applmgr/bin:
/data/R12VIS/apps/tech_st/10.1.3/appsutil/jdk/bin:/bin:/home/applmgr/bin': not a valid identifier

Regards,

---------- Post updated at 02:37 PM ---------- Previous update was at 02:33 PM ----------

.bash_profile of the user 'abc':
Code:
. /data/R12VIS/apps/apps_st/appl/APPSVIS_lxs3er06.env

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

export PATH=$PATH:$HOME/bin

unset USERNAME
export SCRIPTS=/data/R12VIS/scripts
export DISPLAY=lxs3er06.solutions.glbsnet.com:0

---------- Post updated at 02:39 PM ---------- Previous update was at 02:37 PM ----------

Here's the script:
Code:
-bash-3.00$ cat XX_AOL_GEN_SCRIPT_RAMN.prog
#!/bin/bash


echo "Actual Parameter : "$*
export $FCP_LOGIN=`echo $* | cut -d " " -f1 | cut -d "=" -f2 | sed 's/"//g'`
echo "FCP_LOGIN : "$FCP_LOGIN
export $EXECUTE=`echo $* | cut -d " " -f5 | sed 's/"//g'`
echo "EXECUTE : "$EXECUTE
export $PATH=`echo $* | cut -d " " -f6 | sed 's/"//g'`
echo "PATH : "$PATH
cd $PATH
pwd
cd $PATH
rm -rf Concurrent_Program
mkdir Concurrent_Program
chmod 777 Concurrent_Program
cd Concurrent_Program
echo "Something to check On" > outputfile.txt1
-bash-3.00$


Last edited by Scott; 12-15-2010 at 02:46 PM.. Reason: Code tags
# 5  
Old 12-15-2010
You don't need to re-export the PATH if it is already exported:

Code:
> mkdir T1 && echo echo Hello > T1/Echo1 && chmod u+x T1/Echo1
/tmp/test1 > PATH=$PATH:T1
/tmp/test1 > Echo1
Hello

Please show the value of PATH, as mtomar suggests.

edit: You updated your post, see vbe's comments...

Last edited by Scott; 12-15-2010 at 02:49 PM..
# 6  
Old 12-15-2010
How did you load the path variable?
Code:
export $PATH
-bash: export: `/data/R12VIS/apps/tech_st/10.1.3/perl/bin:/........:/bin:/home/applmgr/bin': not a valid identifier

What I put in red has nothing to do with PATH...

Last edited by Scott; 12-15-2010 at 02:51 PM..
# 7  
Old 12-15-2010
Value of PATH:

Code:
-bash-3.00$ echo $PATH
/data/R12VIS/apps/tech_st/10.1.3/perl/bin:/data/R12VIS/apps/tech_st/10.1.2/bin:/data/R12VIS/apps/apps_st/appl/fnd/12.0.0/bin:/data/R12VIS/apps/apps_st/appl/ad/12.0.0/bin:/data/R12VIS/apps/tech_st/10.1.3/appsutil/jdk/jre/bin:/data/R12VIS/apps/apps_st/comn/util/unzip/unzip::/data/R12VIS/apps/tech_st/10.1.2/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/data/R12VIS/apps/tech_st/10.1.3/perl/bin:/data/R12VIS/apps/tech_st/10.1.2/bin:/data/R12VIS/apps/tech_st/10.1.3/appsutil/jdk/jre/bin:/data/R12VIS/apps/apps_st/comn/util/unzip/unzip:/data/R12VIS/apps/tech_st/10.1.2/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/data/R12VIS/apps/tech_st/10.1.3/appsutil/jdk/bin:/bin:/data/R12VIS/apps/tech_st/10.1.3/appsutil/jdk/bin:/bin:/home/r10user/bin
-bash-3.00$

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Linux/bash Script only working if executed from shell prompt

Hi, maybe I'm asking a VERY dumb question, but would anybody out there tell me, why this f****** script won't work if executed as a cronjob, but works fine if executed from a shell prompt? #! /bin/bash set PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin date >>... (3 Replies)
Discussion started by: beislhur
3 Replies

2. Shell Programming and Scripting

Bash Script giving "Command Not found"

Hello Geeks, Greetings...I have the following script: #!/usr/bin/bash #Script to generate number of active PDP context & calculate PDP activation #failurefrom EPG-M #Script written by Gbenga Adigun #September 12, 2013 username="xxxxxx" password="xxxxxxxxx" HOSTS=( ggsn01... (6 Replies)
Discussion started by: infinitydon
6 Replies

3. Shell Programming and Scripting

"Command not found" doing a while loop in bash/shell

i=0 numberofproducts=${#urls} #gets number of entries in array called "urls" numberofproductsminusone=`expr $numberofproducts - 1` #-subtract by one while do wget ${urls} i=$(( $i + 1 )) sleep 10 done I'm getting an error ./scrape: line 22: [0: command not found that... (3 Replies)
Discussion started by: phpchick
3 Replies

4. UNIX for Dummies Questions & Answers

Im new to bash scriping and i found this expression on a bash script what does this mean.

# check host value regex='^(||1|2|25)(\.(||1|2|25)){3}$' if ')" != "" ]; then if ]; then echo host $host not found exit 4 fi elif ]; then echo $host is an invalid host address exit 5 fi espeacailly the top regex part? ---------- Post updated at 06:58 PM ---------- Previous update was... (1 Reply)
Discussion started by: kevin298
1 Replies

5. Shell Programming and Scripting

When i am trying to execute export command within a shell script it is saying command not found.

I am running the export command within a view to use that value inside my build script. But while executing it it is saying "export command not found" My code is as follows: -------------------------- #!/bin/sh user="test" DIR="/bldtmp/"$user VIEW="test.view1" echo "TMPDIR before export... (4 Replies)
Discussion started by: dchoudhury
4 Replies

6. Homework & Coursework Questions

LINUX Bash Shell Script

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Write a bash shell script that presents work information of employees of a department from a company data... (1 Reply)
Discussion started by: help123
1 Replies

7. Shell Programming and Scripting

PLEASE HELP! LINUX BASH SHELL SCRIPT

PLEASE HELP! NEED LINUX SCTIPT Need to write a bash shell script to show information of employees of a department from a company data set. The script should accept a project number (1/2/3/10/20/30) and output * the name of the project * the name of the manager of the controlling... (1 Reply)
Discussion started by: help123
1 Replies

8. Shell Programming and Scripting

bash:vi:command not found

I downloaded and installed "Cygwin yesterday onto my PC running Windows XP. When I tried to type "vi" in Cygwin's window, I got the following message bash: vi: Command not found What shud i do inorder to get into vi editor Thanks (10 Replies)
Discussion started by: bobby1015
10 Replies

9. Shell Programming and Scripting

Command not found in shell script - stumped for 4 days

Hello, I like to begin with :wall:.. literally... It has been 4 days and I have no idea how to fix it. Environment - AIX 5.3 I wrote a script to call on ssh to log into another box via PKA to do something else. If I run the script on the terminal, it works 100%. If the SAP customised... (11 Replies)
Discussion started by: plonkagain
11 Replies

10. Shell Programming and Scripting

#!/bin/bash and #1bin/sh command not found error on mac osx terminal/shell script

i am having a weird error on mac os x running some shell scripts. i am a complete newbie at this and this question concerns 2 scripts. one of which a friend of mine wrote (videochecker.sh) a couple weeks ago and it's been running fine on another machine. then last week i wrote capture.sh and it... (2 Replies)
Discussion started by: danpaluska
2 Replies
Login or Register to Ask a Question