Skip to content

Instantly share code, notes, and snippets.

@jackyshan
Created February 1, 2016 04:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackyshan/69c57502e503501ee1cd to your computer and use it in GitHub Desktop.
Save jackyshan/69c57502e503501ee1cd to your computer and use it in GitHub Desktop.
复制iOS图片到Android目录
#!/bin/bash
for i in `ls`
do
for imgname in `ls $i | grep '^WM.*'`
do
echo $imgname
cp $i/$imgname /Users/jackyshan/Desktop/Project/PregnantMotherAte/PregnantMotherAte_Android/app/src/main/res/mipmap-hdpi/recipes/$imgname
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment