exec.bsh
来自「用java 编写的源码开放的文本编辑器。有很多有用的特性」· BSH 代码 · 共 14 行
BSH
14 行
/** 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 + =
减小字号Ctrl + -
显示快捷键?