install-jar.in

来自「kaffe Java 解释器语言,源码,Java的子集系统,开放源代码」· IN 代码 · 共 21 行

IN
21
字号
#! /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 + =
减小字号Ctrl + -
显示快捷键?