workspace

来自「Linux嵌入式设计配套光盘,学习嵌入式设计可参考」· 代码 · 共 23 行

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