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