Archive for category Linux and Systems

Shell Tricks #2 – Filtering CVS Verbosity

I am having a little trouble getting back to posting so I decided to post a programming nugget. This is a nice little way to get a clear picture of your CVS working area:

cvs status | egrep “(Need|Mod)”

I have this in my .bashrc:

alias cvsstatus cvs status | egrep “(Need|Mod)”

No Comments

Shell Tricks #1 – When size matters

We will start with something easy for Issue 1.

Ever need to clear some space fast? It may be easier to remove the largest files first. Use this trick to find which files to prune first:

du -sk | sort -n

No Comments

Bad Behavior has blocked 157 access attempts in the last 7 days.