Skip to content

Instantly share code, notes, and snippets.

@ceclinux
Created August 19, 2013 13:29
Show Gist options
  • Save ceclinux/6269108 to your computer and use it in GitHub Desktop.
Save ceclinux/6269108 to your computer and use it in GitHub Desktop.
#used as moving av....
#set the delimeter as '\n' to prevent the for loop treat space as next file
export IFS=$'\n'
let count=0
for a in $(find /media/game_/ -name "*.avi")
do
mv $a /media/game_/youknow/
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment