nachos

来自「nachos操作系统框架」· 代码 · 共 16 行

TXT
16
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?