diff options
author | 2023-11-30 09:57:34 +0100 | |
---|---|---|
committer | 2023-11-30 09:57:34 +0100 | |
commit | 253062709c11f88bc8e3e34d8d14d54a691034cd (patch) | |
tree | ce3898d3b630c7f08cd13f45fca25ef3bbab7a59 | |
parent | 50f25337c239b6d852c0200fc7db72ef3f3e489a (diff) | |
download | acme-scripts-master.tar.gz acme-scripts-master.zip |
-rwxr-xr-x | lower.sh | 3 | ||||
-rwxr-xr-x | upper.sh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lower.sh b/lower.sh new file mode 100755 index 0000000..2b3fc54 --- /dev/null +++ b/lower.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +tr 'A-Z' 'a-z' diff --git a/upper.sh b/upper.sh new file mode 100755 index 0000000..d70fa3f --- /dev/null +++ b/upper.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +tr 'a-z' 'A-Z' |