Files
konsole/tests/utf8.sh
Lars Doelle 1338a6f64c adjustments
svn path=/trunk/kdebase/konsole/; revision=38278
2000-01-14 00:33:08 +00:00

12 lines
232 B
Bash
Executable File

#!/bin/bash --
#
# Switch utf-8 mode
#
#-------------------------------------------------------------------------
case $1 in
on) echo $'\033%G'"UTF-8 on";;
off) echo $'\033%@'"UTF-8 off";;
*) echo "usage: $0 [on|off]";;
esac