blob: 07cff3969db6769c1aed01e5c9930357b2fabb6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# $Id: setup-utf8,v 1.2 2012/06/29 09:50:32 tom Exp $
# vile:shmode
case none"$LANG$LC_ALL$LC_CTYPE" in
*UTF-8*)
;;
*)
echo "This script must be run in a UTF-8 locale"
exit 1
;;
esac
|