run.sh

来自「270的linux说明」· Shell 代码 · 共 31 行

SH
31
字号
#!/bin/sh#edit by fbihelp(){	echo "********You want to want ConsoleTest for ?********\n\tq> quit. \n\t1> for Desktop. \n\t2> for Smartphone. "}echo Run ConsoleTest....#use loop to ctroolwhile ( true ) do{	help	read target	case $target in	q* )	exit 0;	esac	case $target in 	1* )	echo run for desktop.............; 	$JAVA_HOME/bin/java -Djava.library.path=$LD_LIBRARY_PATH -cp ConsoleTest.jar:IMBluetooth.jar:IMDisplay.jar:IMPlatform.jar:IMStorage.jar:IMBattery.jar:IMContext.jar:IMNetwork.jar:IMProcessor.jar:IntelMobile.jar ConsoleTest;	#java -classpath ConsoleTest.jar:IntelMobile.jar ConsoleTest	esac	case $target in	2* ) 	echo run for smartphone.............;	./cvm -Djava.library.path=$LD_LIBRARY_PATH/ -Djava.class.path=ConsoleTest.jar:IMBluetooth.jar:IMDisplay.jar:IMPlatform.jar:IMStorage.jar:IMBattery.jar:IMContext.jar:IMNetwork.jar:IMProcessor.jar:IntelMobile.jar ConsoleTest;	esac}done

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?