zoukankan      html  css  js  c++  java
  • 程冬冬 2010.04.28 shell

    作者:2008级嵌入式  程冬冬

    #将下面内容保存为 cdd.sh 文件
    #! /bin/sh                                            //shell标准注释
    ifdown eth0                                           //关闭eth0网卡
    ifconfig eth0 192.168.1.98 up                         //设置eth0 ip地址,并启动
    route add default gw 192.168.1.1                      //设置网关
    echo nameserver 211.84.160.8 > /etc/resolv.conf       //添加DNS服务器
    ping -c 1 www.baidu.com
    if [ $? -eq 0 ]                                       //测试ping结果
    then
     echo 实验成功
    else
      echo 网络不通
    fi

    [root@localhost ~]# chmod +x cdd.sh
    [root@localhost ~]# ./cdd.sh

  • 相关阅读:
    4Sum
    3Sum Closest
    3Sum
    Longest Common Prefix
    Roman to Integer
    thinkphp3.2自定义配置文件
    centos7下git的使用和配置
    git 报错
    Git服务器安装详解及安装遇到问题解决方案
    centos GIT安装
  • 原文地址:https://www.cnblogs.com/ztguang/p/12647853.html
Copyright © 2011-2022 走看看