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
# 8  
Old 12-15-2010
My Friend, What is all exports in script. I think what you want to do is following

Code:
FCP_LOGIN=`echo $* | cut -d " " -f1 | cut -d "=" -f2 | sed 's/"//g'`
echo "FCP_LOGIN : "$FCP_LOGIN
EXECUTE=`echo $* | cut -d " " -f5 | sed 's/"//g'`
echo "EXECUTE : "$EXECUTE

Also Change PATH in your script to MYPATH or DIRPATH.
Since you are using PATH it overwrites env PATH and ur script complains that command not found.

Last edited by mtomar; 12-15-2010 at 03:00 PM.. Reason: last edit screwed everything :)
# 9  
Old 12-15-2010
Thank You All for your time.

The issue is now resolved.

Regards,
# 10  
Old 12-15-2010
Am I misreading this or is this a wrong type of quote (just after export) ?

Quote:
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
Please post the original code if it is not just a matter of correcting the quote.
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