The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM


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

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
FTP and LOg file creation agarwalniru Shell Programming and Scripting 2 03-12-2008 07:10 AM
File creation problem jagdish.machhi@ SUN Solaris 2 03-05-2008 06:10 AM
creation of a file infyanurag Linux 1 01-25-2008 03:26 AM
Creation of output file from list of file ganapati Shell Programming and Scripting 7 01-18-2008 03:55 PM
csv file creation Student37 UNIX for Dummies Questions & Answers 2 02-25-2006 10:38 AM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-25-2008
Registered User
 

Join Date: Mar 2008
Posts: 5
Stumble this Post!
file creation

hi guys

Kindly see the below script

#!/bin/bash

if [ -d /root/joy/ ]
then
# check to see if file notrouter exits or not
if ! ls -l notrouter /root/joy/ >/dev/null
then
touch /root/joy/notrouter
else
echo "Entries already exist"
fi
else
echo "Entries does not exist"
fi

here the problem is that when i run the script it runs but shows me(see below)
# ./comb3
ls: notrouter: No such file or directory
and when i do ls -l notrouter(filename) the file is created
Is their any way were the script runs successfully without prompting the above syntax
Or is their any different method in order to accomplish the task
Thnks in advance!
reg:ash
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 03-25-2008
Registered User
 

Join Date: Mar 2006
Location: Mumbai
Posts: 67
Stumble this Post!
check "man test"

Inorder to check the availability of a file use " -f option "

In your case

if [ -f /root/joy/notrouter ]
then
echo "Entries already exist"
else
touch /root/joy/notrouter
fi
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 11:37 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0