Created
September 5, 2017 02:16
-
-
Save ajmcagadas/8fc4a91788bc4c7b4443c484de3a6252 to your computer and use it in GitHub Desktop.
Gist of linux commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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