Skip to content

Instantly share code, notes, and snippets.

@ajmcagadas
Created September 5, 2017 02:16
Show Gist options
  • Select an option

  • Save ajmcagadas/8fc4a91788bc4c7b4443c484de3a6252 to your computer and use it in GitHub Desktop.

Select an option

Save ajmcagadas/8fc4a91788bc4c7b4443c484de3a6252 to your computer and use it in GitHub Desktop.
Gist of linux commands
# Linux command to lowercase files inside the current directory (pwd).
for f in `find`; do mv -v "$f" "`echo $f | tr '[A-Z]' '[a-z]'`"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment