更新清理命令

This commit is contained in:
CallMeR
2025-01-06 18:01:14 +08:00
parent 641aa555b9
commit 7d8da1f68e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -637,7 +637,7 @@ $ apt clean && apt autoclean && apt autoremove --purge
$ bash -c 'find /var/cache/apt /var/lib/apt/lists /tmp -type f -print -delete' $ bash -c 'find /var/cache/apt /var/lib/apt/lists /tmp -type f -print -delete'
## 清理系统日志 ## 清理系统日志
$ find /var/log/ -type f -print -delete $ bash -c 'find /var/log/ -type f -print -delete'
## 清理命令历史记录文件 ## 清理命令历史记录文件
$ rm -rvf ~/.bash_history && history -c $ rm -rvf ~/.bash_history && history -c
+1 -1
View File
@@ -455,7 +455,7 @@ $ sudo bash -c 'apt clean && apt autoclean && apt autoremove --purge'
$ sudo bash -c 'find /var/cache/apt /var/cache/smartdns /var/lib/apt/lists /tmp -type f -print -delete' $ sudo bash -c 'find /var/cache/apt /var/cache/smartdns /var/lib/apt/lists /tmp -type f -print -delete'
## 清理系统日志 ## 清理系统日志
$ sudo find /var/log/ -type f -print -delete $ sudo bash -c 'find /var/log/ -type f -print -delete'
## 清理命令历史记录文件 ## 清理命令历史记录文件
$ rm -rvf ~/.bash_history ~/.zsh_history ~/.zcompdump* && history -c $ rm -rvf ~/.bash_history ~/.zsh_history ~/.zcompdump* && history -c