Skip to content

Instantly share code, notes, and snippets.

@m-giraud
m-giraud / clean.sh
Created July 8, 2022 06:25 — forked from jjanczur/clean.sh
Script to quickly free up some space in ubuntu
#!/bin/sh
#Check the Drive Space Used by Cached Files
du -sh /var/cache/apt/archives
#Clean all the log file
#for logs in `find /var/log -type f`; do > $logs; done
logs=`find /var/log -type f`
for i in $logs
do
> $i
done