Thanks Robert,
Yes, you picked up on what I was asking:
The integer sequence can be created explicitly using
(1 2 3 4 5 6 7 8 9 10)
Or calculated as per
@i=1
while ($i <= 10)
echo $i
@i+=1
end
Or via external call:
foreach i (`seq 1 10`)
echo $i
end
My question, can you do this implicitly in Csh?
So, far my searchs have come up empty.
In bash this is achieved using: {1..10}
--
--
You received this message because you are subscribed to the Linux Users Group.
To post a message, send email to [email protected]
To unsubscribe, send email to [email protected]
For more options, visit our group at
http://groups.google.com/group/linuxusersgroup
References can be found at: http://goo.gl/anqri
Please remember to abide by our list rules (http://tinyurl.com/LUG-Rules)
---
You received this message because you are subscribed to the Google Groups
"Linux Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.