Linux shell 笔记

来源:互联网 发布:网络中沉默的螺旋案例 编辑:程序博客网 时间:2024/05/18 08:43

su - root -c ” if [ \”xtets\” = \”xtets\” ];then
echo 123
fi
echo stest
if [ -f \”123.log\” ];then
rm 123.log
fi
touch 123.log
chmod 777 123.log”

0 0