Skip to content

Instantly share code, notes, and snippets.

@kyleridolfo
Created May 2, 2015 18:25
Show Gist options
  • Save kyleridolfo/b20e0bc144c4d9fd5b93 to your computer and use it in GitHub Desktop.
Save kyleridolfo/b20e0bc144c4d9fd5b93 to your computer and use it in GitHub Desktop.
Parse list of filenames to move files
#/bin/bash
for F in $(cat ./filelist.txt) ; do
mv $F ./uploaded/
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment