newbie here. i'm currently taking a linux class and have an assignment and am having problems. the assignment is to create a shell script.
the instructions are to log in and create a directory called "scripts" in my home directory. then i am to open the text editor and create a script that displays the date, who is logged on and the current directory.
then we are to run the command using the bash command.
here is what i wrote.
#!/bin/bash
#this is a comment
date
who
pwd
when i try to run it, it won't run.
i have tried it both logged in as a user and as root.
i have also changed the permissions using chmod 755 script1
the next step after we run it is to change the permissions to what i already changed it to. we are then asked to run the script by typing in just the script name (script1).
we then have to add echo escape sequences so that each item appears on a new line.
there is more but if i can get this to work i might be able to finish it.
thanks for any advice.
__________________________
Subscribe now!
The Latest
Featured Videos
Linux Journal Live - eBook Readers and DRM
November 14th, 2008 by Shawn Powers in
The November 13, 2008 edition of Linux Journal Live! Shawn Powers and special guest, Linux Journal Author Daniel Bartholomew, talk e-book readers and Daniel's Kindle, DRM, and other goodness.
Run Your Windows Partition Without Rebooting
November 13th, 2008 by Elliot Isaacson in
Dual booting is a necessary evil and very inconvenient. What if you could run your windows partition in a virtual machine, so you wouldn't have to worry about rebooting anymore? With VMWare Workstation, you can.
Recently Popular
From the Magazine
December 2008, #176
The Oxford English Dictionary says the word "gadget" is a placeholder name for a technical item whose precise name one can't remember. Like that book-reader thingy from Amazon...what's it called? Spindle, Gindle...Kindle, that's it. Check it out in this month's gadget issue.
Other gadgets covered include the Nokia tablets, the BlackBerry, the Neo FreeRunner, the Dash Express, the Roku Netflix Player, the Kangaroo TV, The TomTom GO 930 and the MooBella Ice Cream System. On the larger hardware front, read the reviews of the Acer Aspire One and the YDL PowerStation. On the software front, check out the articles and columns on memcached, Samba security, Mutt, desktop gadgets, bash and Puppet. To wrap it all up, read Doc's thoughts on Google and the browser platform.
Delicious
Digg
Reddit
Newsvine
Technorati







Try this chmod +x
On April 15th, 2008 Amol (not verified) says:
Try this
chmod +x script_name
Then run your script
./script_name
Post new comment