?? install-jar.in
字號:
#! /bin/sh# Copy the given jar file into the standard kaffe installation. This is# here to help install useful JAR's and cut down on installation bugs.prefix=@prefix@classdir=@prefix@/libif test x"${1+set}" != x"set" ; then echo "usage: install-jar <jarfile> ..." exit 1fifor i in "$@"do echo -n "Installing $i in $classdir ... " cp "$i" "$classdir/`basename $i`" && echo "done"doneexit 0
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -