ksh ./sort.sh: not found


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting ksh ./sort.sh: not found
# 1  
Old 02-03-2010
ksh ./sort.sh: not found

I've a simple .sh file:
Code:
#!/bin/ksh
sort -t: -k 1.13,1.13 -k 1.16,1.29 sort.txt > output.txt

When i try to run this sort.sh file
./sort.sh
it gives me the error:
ksh: ./sort.sh: not found

I've tried the following:

1) echo $SHELL
/bin/ksh

2) echo $PATH
/usr/bin:/usr/ucb:/etc:.

3) the sort.sh file has 775 rights

What could be the problem?

Last edited by vbe; 02-03-2010 at 09:26 AM.. Reason: code tags please
# 2  
Old 02-03-2010
Most certainly you are not where you think you are (and so no script is found)
do a
Code:
#  ls -l  ./sort.sh
# pwd

for confirmation
# 3  
Old 02-04-2010
I checked the path. I'm in the required directory and the .sh file is present

Still i'm getting /bin/ksh: ./sort.sh: not found error.
# 4  
Old 02-04-2010
Question

What is the first line of your script? Could it be it does not find the interpreter?
# 5  
Old 02-04-2010
Hi.

Probably edited in Windows. For example:
Code:
#!/bin/ksh

# @(#) s1	Demonstrate script file not found.

# Simulate the entering of the script file.
cp sacred-file sort.sh

echo
echo " Sample script file sort.sh:"
cat sort.sh

echo
echo " Sample script file sort.sh, showing invisible characters:"
cat -A sort.sh

echo
echo " Execution of sort.sh:"
./sort.sh

# Change line to simulate coming from Windows / DOS.

echo
echo " Script sort.sh would look like this if from DOS / Windows:"
flip -m sort.sh
cat -A sort.sh

echo
echo " Execution of sort.sh with DOS line endings:"
./sort.sh

echo
echo " And yet it exists and has appropriate permissions:"
ls -lgG sort.sh

exit 0

producing:
Code:
% ./s1

 Sample script file sort.sh:
#!/bin/ksh

# @(#) s1	Simple test script.

echo " Hello, world."

 Sample script file sort.sh, showing invisible characters:
#!/bin/ksh$
$
# @(#) s1^ISimple test script.$
$
echo " Hello, world."$

 Execution of sort.sh:
 Hello, world.

 Script sort.sh would look like this if from DOS / Windows:
#!/bin/ksh^M$
^M$
# @(#) s1^ISimple test script.^M$
^M$
echo " Hello, world."^M$

 Execution of sort.sh with DOS line endings:
./s1[29]: ./sort.sh: not found [No such file or directory]

 And yet it exists and has appropriate permissions:
-rwxr-xr-x 1 70 Feb  4 09:32 sort.sh

If you create a file with Windows / DOS line endings, you will need to convert it to *nix format. There are many such utilities you can use. In Linux, there is flip, in other systems there is dos2unix, etc.

Best wishes ... cheers, drl
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

ksh: <a perl file name> not found

I am using a perl file to run a batc job from unix prompt. I am inside the correct directory where the perl file is located. I can even find the file using ls command. But when I run the perl file , it says 'ksh: <perl_file.pl> not found'. Could anyone please let me know what is wrong? (4 Replies)
Discussion started by: Subhasis
4 Replies

2. Shell Programming and Scripting

ksh:not found

Hi, i used to run oracle queries in unix and then transfer the result in to csv files. it was working fine for a month.but today it showed an error like ksh>dimens_minus_scpt.sh not found. Can someone please help. Thanks. :wall: (4 Replies)
Discussion started by: varadharajan87
4 Replies

3. Shell Programming and Scripting

ksh not found on remote server

Hi guys, I need to run batch jobs on a remote machine. I have been able to make a connection with a user2 login details via ssh, and have tested that I am in the correct directory etc. Problem is that when I try to run the batch job, I keep getting a ksh <batchjobname> not found. If doing it... (1 Reply)
Discussion started by: Hopper_no1
1 Replies

4. Shell Programming and Scripting

/bin/ksh: scriptname: not found. ???

I have started to write Korn scripts on the client's AIX 4.2 servers and there is this small problem that puzzles me. I code all my scripts the same way: - first line contains : #!/bin/ksh - I do this console command on every scripts: chmod +x scriptname But still, on some occasions,... (4 Replies)
Discussion started by: Browser_ice
4 Replies

5. UNIX for Dummies Questions & Answers

ksh not found in solaris

Hi , I am new to solaris world but worked in unix for a while . I have this solaris box version 8 .I am trying to run a simple unix file . Q.shl cat Q.shl #!/bin/ksh db2 get connection state When I run the file I get following error : Q.shl ksh: Q.shl: not found This is... (6 Replies)
Discussion started by: capri_drm
6 Replies

6. Shell Programming and Scripting

Problem with script: ksh not found

Hello Guys, what is the significance of using #!/bin/sh at the start of shell script. my default shell is ksh, when i run my script i have ksh: not found error and when i use ./myscript it works. Can anyone explain me the problem please ? tnx (1 Reply)
Discussion started by: midhun_u
1 Replies

7. Shell Programming and Scripting

procedure/function not found in .ksh

Hi all , I am getting an error "job_procfile not found" while excecuting a .ksh script. The script is used to create control-m ( scheduler ) jobs dynamically by reading parameter files ( flat filescomma seperated ) job_procfile is a function within the .ksh script The script is something... (8 Replies)
Discussion started by: rajesh_ramaoz
8 Replies

8. Programming

ksh: make: not found

$ make ksh: make: not found Hello, when i use the "make" command in Solaris, it says the "make" command is not found! Any help appreciated! BobK (3 Replies)
Discussion started by: bobk544
3 Replies

9. UNIX for Advanced & Expert Users

ksh: cvs: not found ??

Hi, I've set up putty/ plink to work with cvs on windows and connect via ssh to unix where my cvs repository is. I want to use wincvs to log in to my cvs repository. However, I get an error when I run the following command (on windows): cvs -d :ext:user@server:/path/to/repository status ... (2 Replies)
Discussion started by: rein
2 Replies

10. UNIX for Dummies Questions & Answers

Solaris-ksh: directory not found

Solaris 8 using ksh: I have a directory called apps...in that directory there are some flat files and some directories. I can't access one particular subdirectory called netscape-old. I am NOT logged in as root Here is the info... user@machine>ls -l drwxr-xr-x 3 root other ... (5 Replies)
Discussion started by: dangral
5 Replies
Login or Register to Ask a Question