📄 exec.bsh
字号:
/** Get the Java Runtime and start the external process, display any output to the standard bsh output.*/bsh.help.exec = "usage: exec( String arg )";exec( String arg ) { proc = Runtime.getRuntime().exec(arg); din = new DataInputStream( proc.getInputStream() ); while( (line=din.readLine()) != null ) print(line);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -