Recurring Commands
A scratchpad of one-liners I keep typing — find files older than N days, list IPs, and the others I'm too lazy to memorize properly.
1 min read
This posts I created to notes what recurring commands I always used for.
Find some file older than 90 day then delete$ find -name '$file' -mtime +90 -delete
Show all IP Address from server$ hostname -I
...I will keep this post updated.
..not a promise