?? choose_bitypes
字號:
#!/bin/shUNAME_R=`/usr/bin/uname -r`OS_MAJOR=`echo $UNAME_R | /usr/bin/sed -e 's/^\([^.]*\).*/\1/'`OS_MINOR=`echo $UNAME_R | /usr/bin/sed -e 's/^[^.]*\.\([^.]*\).*/\1/'`if [ $OS_MAJOR -ne 5 ]; then echo 'SunOS version is not 5.' exit 1fiif [ $OS_MINOR -lt 6 ]; then BITYPES=intNt_bitypes.helse BITYPES=no_intNt_bitypes.hfiif /usr/bin/cmp -s $BITYPES bitypes.h; then echo 'sys/bitypes.h is up-to-date.'else /usr/bin/rm -f bitypes.h /usr/bin/cp $BITYPES bitypes.hfiexit 0
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -