/usr/games/fortune-zh is in fortunes-zh 2.7.
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 17 18 19 20 21 22 23 24 25 26 27 28 | #!/bin/sh
# fortune-zh
set -e
FORTUNE="/usr/games/fortune"
[ -x $FORTUNE ] || ( echo "E: Please install package 'fortune-mod'."; false )
# The old version (1.*) of fortune-zh contains only tang300 and song100.
# Note, $\sum_{i} P_i = 1$, i.e. all the possibilities must sum to 1.
DICT="16% tang300 05% song100 79% chinese"
# check LANG
if [ ! -z $LC_ALL ]; then
LANG="$LC_ALL"
fi
# output according to LANG
case "$LANG" in
"zh_CN.GB2312")
LANG=zh_CN.UTF8 $FORTUNE $DICT | iconv -c -f utf8 -t gbk
;;
"zh_TW.Big5")
LANG=zh_TW.UTF8 $FORTUNE $DICT | iconv -c -f utf8 -t big5
;;
*)
$FORTUNE $DICT
;;
esac
|