⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 workspace

📁 Linux嵌入式设计配套光盘,学习嵌入式设计可参考
💻
字号:
#!/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 + -