Skip to content

Instantly share code, notes, and snippets.

@astail
Created July 24, 2015 06:16
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 astail/fcb0c53cd6be319e54cb to your computer and use it in GitHub Desktop.
Save astail/fcb0c53cd6be319e54cb to your computer and use it in GitHub Desktop.
#!/bin/sh
for f in GR*;
do
mv $f ${f/GR[0-9][0-9]_/''};
done
for f in 2015[0-9]*;
do
mv $f ${f/_*[0-9]*_/_};
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment