Skip to content

Instantly share code, notes, and snippets.

@decause
Forked from ryansb/flash_drive_autocopy.sh
Created September 3, 2012 20:34
Show Gist options
  • Save decause/3613202 to your computer and use it in GitHub Desktop.
Save decause/3613202 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