暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ifplugd.action 172B

12345678910111213
  1. #!/bin/sh
  2. if [ -z "$1" ] || [ -z "$2" ] ; then
  3. echo "Wrong arguments"
  4. exit 1
  5. fi
  6. [ "$2" = "up" ] && exec udhcpc -i $1
  7. if [ "$2" = "down" ] ; then
  8. ifconfig $1 down
  9. fi