“批量清空日志”的版本间的差异
跳到导航
跳到搜索
第12行: | 第12行: | ||
=see also= | =see also= | ||
− | [https://blog.csdn.net/qq_31226223/article/details/88869046 Linux下批量备份日志以及清空日志] | + | [https://blog.csdn.net/qq_31226223/article/details/88869046 truncate Linux下批量备份日志以及清空日志] |
[https://www.cnblogs.com/AlexLeeLi/p/10373849.html 使用作业自动批量清理数据库日志文件] | [https://www.cnblogs.com/AlexLeeLi/p/10373849.html 使用作业自动批量清理数据库日志文件] |
2020年6月13日 (六) 10:56的版本
#!/bin/bash # 删除 4月的日志 for loop in `ls | grep hello-wallet_2020-04` do echo > $loop #echo $loop done