“批量清空日志”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
第9行: 第9行:
  
 
</pre>
 
</pre>
 +
 +
=see also=
 +
[https://www.cnblogs.com/AlexLeeLi/p/10373849.html 使用作业自动批量清理数据库日志文件]
  
  
 
[[category:shell]]
 
[[category:shell]]

2020年6月13日 (六) 10:42的版本

#!/bin/bash
# 删除 4月的日志 
for  loop  in `ls  | grep  hello-wallet_2020-04`
do
echo > $loop
#echo  $loop
done

see also

使用作业自动批量清理数据库日志文件