Skip to content

Instantly share code, notes, and snippets.

@mujahidk
Created February 28, 2018 21:01
Show Gist options
  • Select an option

  • Save mujahidk/5c8fd4e57986ea8c330ae97bb261cd54 to your computer and use it in GitHub Desktop.

Select an option

Save mujahidk/5c8fd4e57986ea8c330ae97bb261cd54 to your computer and use it in GitHub Desktop.
Shell find and rename files
find -type f -name 'dsc*'| awk '{gsub(".xyz","",$1);system("mv "$1".xyz "$1".jpg")}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment