add other

to uppercase/lowercase
This commit is contained in:
onceupon 2017-04-14 17:19:59 +08:00 committed by GitHub
parent e9789c24aa
commit 6e6112f324

View File

@ -797,6 +797,12 @@ tr --delete '\n' <input.txt >output.txt
tr '\n' ' ' <filename
```
##### to uppercase/lowercase
```bash
tr /a-z/ /A-Z/
```
##### compare files (e.g. fileA, fileB)
```bash