?? all-locales
字號:
#! /bin/sh# Prints the list of all locale names, one per line.locale -atest $? = 0 && exit 0host=`/bin/sh ../autoconf/config.guess`host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`case "$host_os" in sunos* | solaris*) cd /usr/lib/locale && ls -1 ;; freebsd*) cd /usr/share/locale && ls -1 ;; *) echo "Don't know how to determine list of locales on $host_os" 1>&2 exit 1 ;;esac
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -