Skip to content

Instantly share code, notes, and snippets.

@suchoudh
Created May 29, 2023 07:51
Show Gist options
  • Select an option

  • Save suchoudh/cb038052e94924c00b8c717924a73a3b to your computer and use it in GitHub Desktop.

Select an option

Save suchoudh/cb038052e94924c00b8c717924a73a3b to your computer and use it in GitHub Desktop.
add prefix or suffix to all files in a folder (including folders)
ls | xargs -I {} mv {} PRE_{}
ls | xargs -I {} mv {} {}_SUF
# can use filering with ls in $0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment