Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Search Forums:



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

Closed Thread    
 
Thread Tools Search this Thread Display Modes
    #1  
Old 09-19-2008
Registered User
 

Join Date: Sep 2008
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
add a line at the end of a file using shell scripting

Hi All ,
I am new to shell scripting.
i have a shell script(which is executed as a super user) , i want to it to do one more job for me. ie mounting a directory over other using lofs .
i have done it manually using
1) using mount command
mount -F lofs /export/home/dju /dju
2) putting an entry into the end of /etc/vstab file
/export/home/dju - /dju lofs - yes -



how can i do this in shell script .

can somebody help me.

Regards
Aki
Sponsored Links
    #2  
Old 09-19-2008
Registered User
 

Join Date: Aug 2008
Posts: 87
Thanks: 0
Thanked 0 Times in 0 Posts
Try this.. it may help you.


Code:
echo "<Text need to add end of File >"  >>  /etc/vstab

Sponsored Links
    #3  
Old 09-19-2008
Registered User
 

Join Date: Sep 2008
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
thanks 4 ur reply !!
can i be sure that line will be appended at the end of file.?
Also how can i perform mount command ...
    #4  
Old 09-19-2008
Registered User
 

Join Date: Mar 2008
Location: /bin/sh
Posts: 378
Thanks: 2
Thanked 1 Time in 1 Post
Yes it will be added at the end of the line.

For mount command :


Code:
man mount

Sponsored Links
    #5  
Old 09-19-2008
era era is offline Forum Advisor  
Herder of Useless Cats (On Sabbatical)
 

Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 3,653
Thanks: 0
Thanked 7 Times in 7 Posts
A command in a script is not different from a command you write at the command line, except you write it in a file instead, and chmod +x the file. You should probably also have an explicit #!/bin/sh at the top of the file.
Sponsored Links
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Delete a portion of a line using shell scripting Loy81 Shell Programming and Scripting 3 08-25-2008 01:54 PM
Need help in splitting a line into fields in shell scripting punithavel Shell Programming and Scripting 2 06-25-2008 04:01 PM
How do i iterate thru each line of a file in shell scripting? Ravi Varma Shell Programming and Scripting 2 09-05-2007 11:28 PM
End of Line in Shell Scripting 33junaid Shell Programming and Scripting 2 08-12-2007 11:03 AM
who to deal with whole line in shell scripting KSA Shell Programming and Scripting 2 08-02-2006 08:12 AM



All times are GMT -4. The time now is 05:14 AM.