Tag: for
Iterate a Text File in Bash
May 25, 2012
This is how you iterate thru a text file outputting a line at a time in Bash shell scripting.
Import All MySQL Sql Dumps in a Folder
December 1, 2008
This command will import all the MySQL sql dumps in the current folder. You can use this to restore your…
Fetch a URL With a Number Series
July 3, 2008
Use this command to download numbered content… for ((i=1; i
Zero Padding In Linux Commands
July 2, 2008
This is how you zero pad a numerical variable in bash. for ((x=1;x<=31;x+=1)); do echo `printf “%02d” $x`; done Original…
Recent Comments