Command not found in shell script - stumped for 4 days


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Command not found in shell script - stumped for 4 days
# 8  
Old 01-13-2011
Could it be a problem with LIBPATH perhaps load of zib or libssl is failing and causing the ssh binary to not execute.
# 9  
Old 01-14-2011
Shell is ok with #!/bin/sh

Quote:
Originally Posted by Perderabo
This error can happen if a script is executed with a #! line that references a non-existent shell. Like this:
Code:
$
$ cat fubar
#! /no/such/file

exit 0
$
$
$ ./fubar
ksh: ./fubar: not found [No such file or directory]
$

./fubar is there. It's /no/such/file that is missing. Very misleading error message though.
Hello, Thanks for replying. Initially, I thought it was a problem with my shell script that was originally written in csh. I then modified it to to Bourne shell. Both /bin/sh and /usr/bin/sh are there as files and not links. The 2nd hint was it tells me exactly which line in the script caused the "not found" error. It was at the line where /bin/ssh was called. I did further tests by doing a "file /bin/ssh" within the script and that too gave a problem (and again, only sometimes). The main difference is that when I ran the script in an interactive shell, there is no problems at all. And the problem occurs if SAP program calls this script, and for that matter, fails about 30% of the time. Regards J Phang

---------- Post updated at 07:10 PM ---------- Previous update was at 07:06 PM ----------

Quote:
Originally Posted by Chubler_XL
Could it be a problem with LIBPATH perhaps load of zib or libssl is failing and causing the ssh binary to not execute.
Hello, Thanks. In this case, it didn't get as far as executing the binary. It went splat when the script looks for ssh in /bin/. Thanks anyway J Phang
# 10  
Old 01-14-2011
is SAP running in a chroot jail? if so you may be looking at the wrong /bin/ssh
# 11  
Old 01-14-2011
Need to check

Quote:
Originally Posted by wempy
is SAP running in a chroot jail? if so you may be looking at the wrong /bin/ssh
Hi, I will need to find out how to determine whether it is chroot or not. Thanks. It didn't strike me. Now to do some homework. Cheers J Phang
# 12  
Old 01-14-2011
Check the inode of / to detect chroot. "ls -li /".
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Stumped .. is this a command line arg?

I need a bit of explanation: LogFile=${LOGS_DIR}/${1}_$$ I know: - LOGS_DIR is an environment variable - $$ is the PID ... but what is ${1} ?? Is it another method to access a command line variable, or the job name? Thanks! Jon (3 Replies)
Discussion started by: jdorn001
3 Replies

2. 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

3. Shell Programming and Scripting

Stumped on simple BASH Script

Hello All, First and foremost, if I have posted this question in the wrong forum/section, I apologize. Okay so here is my dilemma. I have written a BASH script that automatically restarts a tomcat on a given server. That part was simple enough. However, now I would like to not only restart... (14 Replies)
Discussion started by: UNM_Lobo
14 Replies

4. Linux

Shell implementation - Command not found

Hi, I am trying to execute a program with pipes to run a few basic commands by forking children. When I try to run commands in the child process without pipe, I am unable to run the command as execv fails. However for commands that are given with pipes execute successfully. for example:... (1 Reply)
Discussion started by: mmurali2
1 Replies

5. Shell Programming and Scripting

rm:command not found in linux Bash shell script

Hi All, 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: rm:command not found On doing little investigation, I added '/bin' to $PATH and on doing echo... (9 Replies)
Discussion started by: a1_win
9 Replies

6. UNIX for Dummies Questions & Answers

Clarification on '1 days ago' in date command [Found answer, posted within]

I know the topic of getting yesterday's date has been covered ad nauseum, but I just want to be clear on something. I recently started using the command date --date='1 days ago' '+%m/%d/%y' to get yesterday's date and it's been working great. I just want to be certain that it is going to... (1 Reply)
Discussion started by: DeCoTwc
1 Replies

7. 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

8. Shell Programming and Scripting

Shell script for purging the 3 days old files

Hi all, I try to write shell script to the below requirement. I have Hard coded the oratab location and take the list of databases from oratab and find out archive log locations for each database, and list more than 3 days old files for each location and purge those. ... (2 Replies)
Discussion started by: mak_boop
2 Replies

9. Shell Programming and Scripting

perl replace command, stumped!

Ok, I stole some code from a program that takess a hash of a password from PasswdMD5 and replaces it in the /etc/shadown file on a linux system. I run his program and it's fine. Well I took the same code and put it in another program that won't ask for prompgx and such and this code won't work:... (2 Replies)
Discussion started by: benefactr
2 Replies

10. UNIX for Dummies Questions & Answers

List out last 2 days files using shell command

Could please help me To view removed files list for last 2 days. (1 Reply)
Discussion started by: santhakumar
1 Replies
Login or Register to Ask a Question