Re: script to generate names ???



onkar wrote:
I am faced with a problem of generating 10000 names such as :

test1
test2
test3
....
....
....
....
test10000


for testing my application on UNIX/Linux ; Please help me if any one
has knowledge about this. I am totally novice to shell scripting ..

$ seq -f 'test%g' 10
test1
test2
test3
test4
test5
test6
test7
test8
test9
test10



John
--
Perl isn't a toolbox, but a small machine shop where you
can special-order certain sorts of tools at low cost and
in short order. -- Larry Wall
.



Relevant Pages