国产真实乱子伦精品,国产精品100页,美女网站色免费,国产白嫩美女免费观看,欧美精品亚洲,欧美韩国xxx,欧美性猛交xxxxxxxx软件

linux批量清除tomcat日志 -電腦資料

電腦資料 時間:2019-01-01 我要投稿
【www.shangyepx.com - 電腦資料】

   

1,直接刪除文件

<code class="hljs lasso">find /tomcat/logs/ -name '*.log.*' | xargs rm -f</code>

2,將文件內容清零

<code class="hljs lasso"><code class="hljs lasso">find /tomcat/logs/ -name 'catalina.out' | xargs truncate -s 0</code></code>

    當然要是清除一個文件可以直接echo輸出,

linux批量清除tomcat日志

,

電腦資料

linux批量清除tomcat日志》(http://www.shangyepx.com)。

<code class="hljs lasso"><code class="hljs lasso"><code class="hljs bash">echo "" > catalina.out</code></code></code>

    但是這個命令批量處理就不行了,需要用truncate執(zhí)行,將文件字節(jié)數(shù)直接設置成0。

最新文章