常用shell命令操作

1.找出系统中所有的*.c 和*.h 文件 (-o 或者)

$find / -name "*.cpp" -o -name "*.h"

2.设定 eth0 的 IP 地址为 192.168.100.2,掩码为 255.255.255.0,mtu 为 1024

http://blog.chinaunix.net/uid-27789542-id-3518668.html

例1.2:修改IP地址、掩码和MTU

# ifconfig eth0 192.168.100.100 netmask 255.255.255.128 mtu 1024

 

转载于:https://www.cnblogs.com/guxuanqing/p/5978015.html

你可能感兴趣的:(常用shell命令操作)