View Single Post
Old 26th May 2009
J65nko J65nko is offline
Administrator
 
Join Date: May 2008
Location: Budel - the Netherlands
Posts: 4,125
Default

For command substitution I prefer to use the the "$( .... )" construct instead of the archaic backquotes ` ..... ` format.
Code:
for page in $(jot 3 1) ; do echo $page ; done 
1
2
3
BTW this is on OpenBSD
__________________
You don't need to be a genius to debug a pf.conf firewall ruleset, you just need the guts to run tcpdump
Reply With Quote