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
Help Required: Command to find IP address and command executed of a user loggedout Security 2 08-06-2008 05:12 PM
how to? launch command with string of command line options TinCanFury Shell Programming and Scripting 5 04-28-2008 03:06 PM
inconsistent ls command display at the command prompt & running as a cron job rajranibl Linux 5 07-30-2007 05:26 AM
How to use more than one MPE command STREAM with Unix command in a single shell? bosskr HP-UX 1 10-16-2006 01:16 PM
How to use more than one MPE command STREAM with Unix command in a single shell? bosskr Shell Programming and Scripting 0 09-19-2006 06:44 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 01-30-2008
ali560045's Avatar
Registered User
 

Join Date: Oct 2007
Posts: 265
how to use set command

i have a script in which i go to a particular dir and list all its file
------------------------------------------------------------------------
#!/bin/ksh

if test -d systemProperties
then
set --`cd systemProperties`
for i in *
do
echo "$i" >> lastm2.txt
done
fi
-----------------------------------------------------------------

this script is in dir conf and conf also has dir systemProperties.so i m going inside this dir and checking all its files.plz help me in this. i think some problem in "set" command
Reply With Quote
Forum Sponsor
  #2  
Old 01-30-2008
Moderator
 

Join Date: Feb 2007
Posts: 2,329
Ali,

For basic usage like this you really should look at the appropriate man pages, books or tutorials.

Regards

Last edited by Franklin52; 01-30-2008 at 05:38 AM. Reason: typo
Reply With Quote
  #3  
Old 01-30-2008
vino's Avatar
Supporter (in vino veritas)
 

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,699
Quote:
Originally Posted by ali560045 View Post
i have a script in which i go to a particular dir and list all its file
Wouldnt this work ?

Code:
find systemProperties -type f 1> lastm2.txt 2> /dev/null
Quote:
Originally Posted by ali560045 View Post
------------------------------------------------------------------------
#!/bin/ksh

if test -d systemProperties
then
set --`cd systemProperties`
for i in *
do
echo "$i" >> lastm2.txt
done
fi
-----------------------------------------------------------------
You need to have a whitespace between -- and the backtick `. Also you need to have a ls instead of cd
Code:
set -- `ls systemProperties`
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 06:55 AM.


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

Content Relevant URLs by vBSEO 3.2.0