Created
November 26, 2010 10:28
-
-
Save martinbpeters/716532 to your computer and use it in GitHub Desktop.
Convert text in file to upper case using shell
This file contains 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
#!/bin/sh | |
: <<'COMMENTOUT' | |
Simple script to change the case of text within a file | |
COMMENTOUT | |
cat $1 | tr '[a-z]' '[A-Z]' > $2 | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment