Skip to content

Instantly share code, notes, and snippets.

@futabooo
Created November 19, 2014 15:26
Show Gist options
  • Save futabooo/eaae85d7e3f9a2b4c555 to your computer and use it in GitHub Desktop.
Save futabooo/eaae85d7e3f9a2b4c555 to your computer and use it in GitHub Desktop.
Android端末の中に内容が同じで名前だけ違うフォルダ200個作る
#!/bin/sh
i=0
while [ $i -ne 200 ]
do
i=$(( i+1 ))
cp -r /mnt/shell/emulated/0/0 /mnt/shell/emulated/0/$i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment