You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|
|
|