📄 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 + -