📄 cd.bsh
字号:
/** Change working directory for dir(), etc. commands (like Unix cd)*/bsh.help.cd = "usage: cd( path )";/* Additions by Kevin Raulerson, http://www.spin.com.mx/~kevinr/*/void cd( String pathname ) { file = pathToFile( pathname ); if ( file.exists() && file.isDirectory() ) bsh.cwd = file.getCanonicalPath(); else print( "No such directory: "+pathname);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -