📄 workspace
字号:
#!/bin/bash# Set up the user's environment for working through examples in the book.# Copy the laddie appliance code from the CD in the background.case "$1" in start) if [ ! -d /Code ]; then echo "Installing Laddie appliance code...(backgrounding)" /etc/rc.d/init.d/laddiecode & fi ;; stop | restart | status) ;; *) echo "Usage: $0 start" exit 1 ;;esac
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -