?? pixil-ifup
字號:
#!/bin/sh# Network configuration script for the Pixil Operating Environment# running under Redhat 7.3## Usage: ./pixil-ifup <device> # Major cheat here... :) Just run the Redhat scripts. We don't allow# you to actually change the settings, becuase that would be very# irresponsibleCONFIG=${1}[ -z "${CONFIG}" ] && { echo "usage: ./pixil-ifup <config | device>" exit 1}# We assume a default file of /usr/local/pixil/scripts/pixil-<device>.conf[ -f "${CONFIG}" ] || CONFIG=/usr/local/pixil/scripts/pixil-${CONFIG}.conf [ -f "${CONFIG}" ] || { echo "No config '${CONFIG}' found" echo "Usage: ./pixil-ifup <config | device>" exit 1}/etc/sysconfig/network-scripts/ifup ${DEVICE}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -