Skip to content

Instantly share code, notes, and snippets.

@rafasoares
Created August 9, 2019 16:19
Show Gist options
  • Save rafasoares/2478b3045ce60187d36f9fd388715e1c to your computer and use it in GitHub Desktop.
Save rafasoares/2478b3045ce60187d36f9fd388715e1c to your computer and use it in GitHub Desktop.
Copying `.sample` files removing the `.sample` extension (one liner)
for file in *.sample; do cp $file ${file/.sample/}; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment