Probably the dumbest question you've read in a while...


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Probably the dumbest question you've read in a while...
# 1  
Old 01-03-2012
Power Probably the dumbest question you've read in a while...

So,
I realize that this will be considered a very stupid question, but I am very new to Linux (specifically Ubuntu) and I would just like some user input rather than blindly searching through many volumes (although I plan on doing that later).
So I've been going through and running some simple shell scripts, just testing the new OS out, and I recently ran into a tiny problem.
I wrote a super basic script to show the date and time through the shell, saved it in the text editor, and went to change the mode of it to executable through the script ($chmod x+ scriptname). But when I try this, the terminal sends back text saying that the process could not be completed, because there was no such file or directory, although I know for a fact that there is such a file, seeing as I was looking directly at the icon for it when I attempted this.
So anyway, the answer is probably pretty obvious I suppose, I just cannot think of it for the life of me. I will be looking around for it, but if someone could help me out with an explanation a little quicker, I would really appreciate the gesture.

-K
# 2  
Old 01-03-2012
You are probably in the wrong directory.

When you open a terminal, you will be positioned inside $HOME e.g /home/username
The script which you saved thru text editor is probably located on your desktop e.g /home/username/Desktop.

Be sure to check.

Hope that helps.
Regards
Peasant.
This User Gave Thanks to Peasant For This Post:
# 3  
Old 01-03-2012
Welcome on board,
You have done more than many here...
Doing tons of reading gets you confused when saturated, and you forget the basics...
a script, to be run needs two things (if you except syntax etc errors... ):
-> set as executable
-> be in the PATH
The message you got says: "I cant find your script!!" but you have to understand - In the PATH.
Either you put your script somewhere in the PATH, else add dot "." and the end of your PATH variable e.g. in your .profile
This User Gave Thanks to vbe For This Post:
# 4  
Old 01-03-2012
I hope you have run chmod +x and not $chmod !!
# 5  
Old 01-03-2012
Code:
chmod +x scriptname

Note "+x" not "x+".
# 6  
Old 01-03-2012
Thanks for the concise words of advice all, got it figured out, really big help.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

This must be the dumbest question ever posted -T5140 power button

I have a T5140 and cannot find the power switch -is there an on/off button? Good grief ! Thank you in advance. joe (3 Replies)
Discussion started by: joboy
3 Replies

2. Shell Programming and Scripting

Defaults read/write question

OSX 10.9 How does "defaults" know where to look for .plists? To expand: defaults read com.apple.finder is located in ~/Library/Preferences but, defaults read com.apple.mail is located in ~/Library/Containers/com.apple.mail/Data/Library/Preferences/com.apple.mail.plist So my question... (0 Replies)
Discussion started by: sudo
0 Replies

3. UNIX for Dummies Questions & Answers

read mail question

how do I save a email I just read to a new file? Thanks. (3 Replies)
Discussion started by: drew211
3 Replies

4. Shell Programming and Scripting

Simple while read line loop question

#!/bin/bash count=1 while read line do if (($count > 4)); then awk -v var1="$count" '{printf "%3s%8s%11s%11s%11s\n",var1,$2,$3,$4,$5}' else echo $line fi count=$((count+1)) done < posre_sub.itp > test cat test INPUT: ; position restraints for... (3 Replies)
Discussion started by: origamisven
3 Replies

5. UNIX for Dummies Questions & Answers

Question with read command in ksh

Hi, I was writing a script to accept input using read. When I put !#/usr/bin/ksh in the beginning of the script, it accepts only 258 characters. And I remove it, it accepts more. I'm wondering what the difference is. Thanks in advance, (7 Replies)
Discussion started by: swmk18
7 Replies

6. Programming

Question about read writer lock

From <<Advanced Programming in the Unix>> section 11.6, it says: Although implementations vary, readerwriter locks usually block additional readers if a lock is already held in read mode and a thread is blocked trying to acquire the lock in write mode. This prevents a constant stream of readers... (5 Replies)
Discussion started by: robin.zhu
5 Replies

7. UNIX for Dummies Questions & Answers

The dumbest of dumb Text Search questions

I've done some due diligence by searching the forum for an answer, but to no avail. Excuse this most elementary of questions. Using grep I can search a file and derive the line number of the text I'm searching for. Now for the elementary part, how do I continue a search for a different search... (3 Replies)
Discussion started by: J.T.
3 Replies

8. Shell Programming and Scripting

read line question

Here is my script: #!/bin/sh days=10 temporal_folder=/tmp/`basename $0`-$$ blacklist=bob.txt mkdir $temporal_folder find /home -type f -atime +$days | \ while read file do while read line do if ; then owner=`ls -l $file | awk ' { print $3 } '` basename $file >>... (8 Replies)
Discussion started by: tjay83
8 Replies

9. UNIX for Dummies Questions & Answers

Dumbest UNIX question ever

I haven't used UNIX is several years. But I became pretty good at it and love it. But I am rusty. I know this is basic, but how do you copy and paste? The user guide says what I remember, to highlight the text and the right-click. But it isn't working. I don't know if this will matter,... (2 Replies)
Discussion started by: arungavali
2 Replies

10. Shell Programming and Scripting

Simple Bash Read File question

Hello all, I am trying to write a simple script that will parse through a text/properties file and check a couple of if statements. Here is what I have so far: FILENAME=$1 while read line do echo $line done < $FILENAME When I call ./simple.sh testfile.txt I recieve a file or... (7 Replies)
Discussion started by: lamagra
7 Replies
Login or Register to Ask a Question