If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Unix Shell Scripts > how could i create 1000 files with different name by a script?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-27-02, 22:40
tusheng tusheng is offline
Registered User
 
Join Date: Apr 2002
Posts: 9
Lightbulb how could i create 1000 files with different name by a script?

i'm trying to create 1000 mq manager by using the command

"crtmqm mqmname",how could i write the script? My current shell is ksh!
Reply With Quote
  #2 (permalink)  
Old 08-28-02, 04:21
Roelwe Roelwe is offline
Registered User
 
Join Date: Aug 2002
Location: Belgium
Posts: 534
What do you mean by mq manager?
The following script will just create 1000 files, named: prefix_<number>


i=1001
count=1
while [ $count -lt $i ]
do
touch prefix_$count
count=`expr $count + 1`
done
__________________
rws
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On