Add reverse case function

This commit is contained in:
Cuttlerat
2019-06-09 13:28:29 +03:00
parent 62bbe5adb9
commit 187e5a1eca
4 changed files with 61 additions and 0 deletions

View File

@@ -48,6 +48,8 @@
| `${VAR^^}` | Uppercase all characters. | `bash 4+` |
| `${VAR,}` | Lowercase first character. | `bash 4+` |
| `${VAR,,}` | Lowercase all characters. | `bash 4+` |
| `${VAR~}` | Reverse case of first character. | `bash 4+` |
| `${VAR~~}` | Reverse case of all characters. | `bash 4+` |
## Default Value