- Disable packages on Debian-based distro
sudo apt-mark hold package-name
- Print the build date of Linux kernel using ISO 8601 format
uname -v | awk '{print $6,$5,$4,$8,$7;}' | xargs -I{} date -d "{}" "+%Y-%m-%d"
- Remove config files
dpkg --list | grep '^rc' | awk '{ print $2 }' | xargs sudo apt-get purge
- Show list pnpm packages
pnpm list -g --depth=0
- Show outdated pnpm packages
pnpm outdated -g --depth=0
- Clean pnpm cache
pnpm cache clean
- Clean composer cache
composer clear-cache
- Download files from list
wget -i your-list
curl -s "https://wttr.in/?m2F&format=v2"