Skip to content

Instantly share code, notes, and snippets.

@YKG
Created September 20, 2018 08:30
Show Gist options
  • Save YKG/450500a82db4ce58134df7dad061cefe to your computer and use it in GitHub Desktop.
Save YKG/450500a82db4ce58134df7dad061cefe to your computer and use it in GitHub Desktop.
rename multiple file names
for i in *.bak; do mv $i ${i%.bak}; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment