Skip to content

Instantly share code, notes, and snippets.

@ryansb
Created September 3, 2012 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ryansb/3613000 to your computer and use it in GitHub Desktop.
Save ryansb/3613000 to your computer and use it in GitHub Desktop.
Copy SJ's magic to flash drives
find /run/media/ryansb -maxdepth 1 -type d | sed 1d |while read line
do
echo "$line"
rm -r $line/*
cp -r /home/ryansb/IGIC/*.pdf $line
chmod 777 $line/*
umount $line
done
echo "Done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment