Skip to content

Instantly share code, notes, and snippets.

@tlovett1
Created July 18, 2014 02:26
Show Gist options
  • Save tlovett1/2018947df75fc929d1d4 to your computer and use it in GitHub Desktop.
Save tlovett1/2018947df75fc929d1d4 to your computer and use it in GitHub Desktop.
#!/bin/bash
for i in {1..100}
do
ipad=$i""
len=${#ipad}
while [ $len -lt 3 ]
do
ipad="0"$ipad
len=$[$len+1]
done
wp import folder/sitename.wordpress.2014-03-20.$ipad.xml --authors=create
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment