Posts Tagged With: for

Import All MySQL Sql Dumps in a Folder

Tagged with: , , , , , , , , , ,

This command will import all the MySQL sql dumps in the current folder. You can use this to restore your backuped databases.


for i in *; do mysql -uroot `basename $i .sql` < $i;  done
No Comments »

Fetch a URL With a Number Series

Tagged with: , , , , , ,

Use this command to download numbered content…


for ((i=1; i<9; i++)) ; do  wget "http://www.example.com/$i.txt" ; done
1 Comment »

Zero Padding In Linux Commands

Tagged with: , , , , , , ,

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 Article

No Comments »