📄 nachos
字号:
#!/bin/sh# Shell-script front-end to run Nachos.# Simply sets terminal to a minimum of one byte to complete a read and# disables character echo. Restores original terminal state on exit.onexit () { stty $OLDSTTYSTATE; }OLDSTTYSTATE=`stty -g`trap onexit 0stty -icanon min 1 -echojava nachos.machine.Machine $*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -