5 lines
81 B
Bash
Executable File
5 lines
81 B
Bash
Executable File
#!/bin/bash
|
|
# Shows current locale (e.g., en_US.UTF-8)
|
|
|
|
echo $LANG | cut -d. -f1
|