1.显示当前的IP
ifconfig eth0 | grep Bcast | awk -F ":" '{print $2}' | cut -d " " -f 1
2.查找文件里是否含有某些字段
grep test test.txt
3.前一个命令正确打印出来的是0
echo $?
4.判断某个目录是否存在,不存在则创建
if [ ! -d /test ];then
mkdir /test
fi
5.解压某个文件到某个文件夹
tar -xvf test.tar.gz -C /test
6.创建连接
ln -s /usr/local/bin/test /bin/test
7.在某个文件下写入内容
方法一:
cat >> /home/test.txt << CHENG
<?