⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 run.sh

📁 270的linux说明
💻 SH
字号:
#!/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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -