mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-02-03 16:07:37 +01:00
6 lines
65 B
Plaintext
6 lines
65 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
ToLower(){
|
||
|
echo "$1" | tr "[:upper:]" "[:lower:]"
|
||
|
}
|