***.log 排除包含某字符串的日志 tail -f **.log | gre...">
美文网首页
linux 常用命令

linux 常用命令

作者: 小蓝田 | 来源:发表于2020-05-09 14:43 被阅读0次
    清空日志文件

    echo "" > ***.log

    排除包含某字符串的日志

    tail -f **.log | grep -v '04FA834C596'

    unzip 解压到指定目录

    unzip **.zip -d 目录名

    tar 解压到指定目录

    tar -xzvf apache-tomcat-7.0.103.tar.gz -C /apps/**/指定目录 --strip-components 1

    相关文章

      网友评论

          本文标题:linux 常用命令

          本文链接:https://www.haomeiwen.com/subject/xfsknhtx.html