/usr/share/sadms-2.0.15/_language.sh is in sadms 2.0.15.repack-0ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash
# bbou@ac-toulouse.fr
# 2005-10-15 07:52:03
# language.sh
### S T A R T
echo "--------------------------------------------------------------------------------"
echo "LANGUAGE"
echo "--------------------------------------------------------------------------------"
echo "\$LANG:$LANG"
echo "\$LANGUAGE:$LANGUAGE"
echo "env:`env | grep LANG`"
echo "getdefaultlocale():`python -c 'import locale;print locale.getdefaultlocale(),'`"
echo "getpreferredencoding():`python -c 'import locale;print locale.getpreferredencoding(),'`"
echo "nl_langinfo(locale.CODESET):`python -c 'import locale;print locale.nl_langinfo(locale.CODESET),'`"
|