Stupid question re: file access


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Stupid question re: file access
# 1  
Old 10-01-2013
Stupid question re: file access

Oi-yoy-yoy !

Feel pretty stupid at the moment....Smilie

I'm trying to write a simple script on a test box... /tmp/testfile
I've written it in vi
it's saved and shows up with ls -al
I'm root (sorry if you dont like it but that's how it is )
I've chmod 755'd it

I'm in /tmp

Code:
#./testfile
bash:./testfile: No such file or directory

I've tried /tmp/testfile too, same thing

I can cat it and vi it and the permissions are -rwxr-xr-x

I'm sure to be doing something daft SmilieSmilie

Last edited by DukeNuke2; 10-01-2013 at 07:58 AM.. Reason: Change font changes to CODE and ICODE tags
# 2  
Old 10-01-2013
What is in testfile?

What you described is a common symptom of having a first line in your shell script be something like:
Code:
#!/shell/pathname

where the file specified by /shell/pathname either does not exist, or exists but is not executable.
These 2 Users Gave Thanks to Don Cragun For This Post:
# 3  
Old 10-01-2013
I can't see anything you're doing wrong.

Have you thought that the error might be generated by a line within your 'testfile'?

Perhaps put an echo command in at line 1 to see if you get output from that.

If you can cat the file then it's there okay.

Code:
 
#./testfile

should work once you're in the /tmp directory and the file has execute set.
This User Gave Thanks to hicksd8 For This Post:
# 4  
Old 10-01-2013
Quote:
Originally Posted by Don Cragun
What is in testfile?

What you described is a common symptom of having a first line in your shell script be something like:
Code:
#!/shell/pathname

where the file specified by /shell/pathname either does not exist, or exists but is not executable.
Eureka !!!
first line was
Code:
#!/bin/bsh

not
Code:
#!/bin/bash

sorted !

I said it'd be something stupid :0)

Many thanks
M.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Stupid question

I just began learning how to use Unix, so forgive my stupidity. I know this is answered somewhere but it's pretty specific and probably easily answered. When I use some commands (particularly recently, the grep command) my terminal seems to freeze up. It switches out of bash mode and into the... (2 Replies)
Discussion started by: ems5311
2 Replies

2. UNIX for Dummies Questions & Answers

Stupid question

Hi all, Please excuse my ignorance - I'm a Cisco kid and my knowledge of Unix is somewhat flaky!! Basically we're running MRTG on an HP-UX server and wondered what the "-" means in the following text within the crontab file - -* * * * * root /home/mrtg/fwdev01.sh I... (3 Replies)
Discussion started by: freakydancer
3 Replies

3. UNIX for Dummies Questions & Answers

One stupid question

Has anybody come across the situation when after openning the cover of HP9000 the PC will not start. We checked everything but did not manage to find any solution to that. The PS seems to be functionning (at lease we can hear it clicking). Please help us solving the problem. Thanks to everybody. (2 Replies)
Discussion started by: Andrey Malishev
2 Replies

4. IP Networking

stupid IP question

Hello! I'm sorry - I know nothing about computers, but I have a dumb question. Could someone explain to me if two computers, say in a large city, could have the same IP address on different days, if they were using broadband internet? Or, is it possible an internet service provider could assign... (3 Replies)
Discussion started by: sugarsweet
3 Replies

5. UNIX for Dummies Questions & Answers

Sorry! Stupid question, but...

Hey everybody. I'm going through my system (Mac OS X 10.3.9, through the Terminal application) trying to get rid of instances of MySQL that I installed over each other. I was having trouble getting MySQL to work: it wasn't letting me set the password, then it wouldn't let me create new databases... (2 Replies)
Discussion started by: starscream
2 Replies

6. UNIX for Dummies Questions & Answers

stupid question!?

fedora core 2 xx8. 5xx version (not sure! not sure how to look it up either..(except on boot sorry!!)).. :( the linux version I started on last year was an old redhet 6.0 version with only text mode.. back then for some reason I knew I how to get rid of whole directories without a) going through... (6 Replies)
Discussion started by: moxxx68
6 Replies

7. UNIX for Dummies Questions & Answers

Stupid question

I need to convert a Unix file to a 'Dos' file. Ie if I look at the converted file in 'vi' on Unix it will have '^M' at the end of each line. Hopefully it won't be a case of reading each line in turn and adding a \n. I've heard there is some sort of unix2dos command but it is not recognised on... (2 Replies)
Discussion started by: Bab00shka
2 Replies

8. UNIX for Dummies Questions & Answers

sorry if this is a stupid question

Hi All, just a thought is it possible to make the shell read the following command $ $*pdf to list all pdf ($ls *.pdf) and $*htm as ($ls *.htm) Thanks for the inputs :) (2 Replies)
Discussion started by: sskb
2 Replies

9. UNIX for Dummies Questions & Answers

Stupid question...

Hello, I've always been around systems that ran windows in one version or another, so I'm familiar with what/when/where/drivers/etc for that. I want to build a unix box to use as a place to learn and become more familiar with unix. I would also like to eventually convert it to a server to... (6 Replies)
Discussion started by: Cortney
6 Replies

10. UNIX for Dummies Questions & Answers

Stupid Question?

I have a SparcStation 10 and it came with an external CD Rom Drive. I am trying to install Solaris 2.6 Server on this machine from the Cd Rom. At the OK> prompt I type "boot cdrom - browser" and I get an error: scsi device not found:error = -1 or something to that effect. Does anyone have any... (9 Replies)
Discussion started by: jskillet
9 Replies
Login or Register to Ask a Question