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