BreadCrumbs: Bash Scripts
Bash Scripts
From Luke Jackson
(Difference between revisions)
Revision as of 22:38, 28 June 2007 (edit) Ljackson (Talk | contribs) ← Previous diff |
Revision as of 23:15, 28 June 2007 (edit) Ljackson (Talk | contribs) Next diff → |
||
Line 15: | Line 15: | ||
done | done | ||
</pre> | </pre> | ||
+ | |||
+ | [[Category:Linux]] | ||
+ | [[Category:Mac OS X]] |
Revision as of 23:15, 28 June 2007
Simple Wget Loop
alpha=( aa bb cc dd ee ff gg hh ii jj kk ll mm nn oo pp qq rr ss tt uu vv ww xx yy zz ) alpha_count=${#alpha[*]} x=0 while [ "$x" -lt "$alpha_count" ] do # List all the elements in the array. wget -O ${alpha[$x]}.htm http://german.about.com/library/media/sound/${alpha[$x]}.wav sleep 1 let "x = $x + 1" done