|
|
|
|
google site
|
|||||||
| Forums | Register | Blog | Man Pages | Forum Rules | Links | Albums | FAQ | Users | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|||
|
my shell script (file modifications)
hi guys
Need some help on my below script #!/bin/sh if [ -f /root/joy/inittab ] then echo "~~:S:wait:/sbin/sulogin" >> /root/joy/inittab else echo "/root/joy/inittab does not exist" fi now the problem is that when i run the above script it runs successfully but when i run it repeatedly the word echo "~~:S:wait:/sbin/sulogin" gets added to the file irrespectively the no of times i run the script. I jst want the line created jst once in the file irrespective of times i run the script.How do i do pls help and thanks in advance reg:ash |
| Sponsored Links | ||
|
|
|
|||
|
Just as a stylistic comment, "if" looks at the error code from whatever command you run it on; "if test $?" is a rather roundabout way of saying it. Code:
#!/bin/bash
if [ -f /root/joy/inittab ]
then
# check to see if inittab already contains this line
if ! grep "~~:S:wait:/sbin/sulogin" /root/joy/inittab >/dev/null
then
echo "~~:S:wait:/sbin/sulogin" >> /root/joy/inittab
fi
else
echo "inittab does not exist"
fiIn theory, there is a race condition here; you should take care not to end up running many of these at the same time, or they will stumble over each other. |
| Sponsored Links |
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| question about testing in shell programming(modifications were made) | thungmail | Shell Programming and Scripting | 2 | 04-08-2008 04:51 PM |
| Shell Script to Load data into the database using a .csv file and .ctl file | Csmani | Shell Programming and Scripting | 3 | 05-24-2006 09:09 AM |
| Reading file names from a file and executing the relative file from shell script | anushilrai | Shell Programming and Scripting | 4 | 03-10-2006 05:25 AM |
| Tracing file modifications | gupta_ca | UNIX for Advanced & Expert Users | 3 | 08-03-2005 09:50 AM |
| In Line File Modifications: Search and Replace | Shakey21 | Shell Programming and Scripting | 2 | 11-20-2001 04:21 PM |