summaryrefslogtreecommitdiffstats
path: root/konsole/tests/utf8.sh
blob: 26d669d3da4f5478bece15db62448b23f9450e78 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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