Vi Cheat Sheet
avatar

This is a pretty good Vi cheat sheet
http://sheet.shiar.nl/vi

Posted in Linux | Leave a comment

Create a Directory Tree CLI
avatar

Using the command below you can create a simple directory tree just by using standard commands:

find . -print | sed -e ‘s;[^/]*/;|____;g;s;____|; |;g’

Posted in Linux | Leave a comment

Register Every DLL in a Directory with one Command
avatar

Have you ever had a folder filled with DLLs that you needed to register in the system?  You can register them all by just running this simple command:

for %v in (“<path>\*.dll”) do (regsvr32 /s “%v”)

Posted in News | Tagged | Leave a comment

Linux / Unix logtop: Realtime Log Line Rate Analyser
avatar

http://www.cyberciti.biz/faq/linux-unix-logtop-realtime-log-line-rate-analyser/

Posted in News | Leave a comment

Copy files between a linux and windows box via rdesktop | fewerwords
avatar

Copy files between a linux and windows box via rdesktop | fewerwords.

Posted in Linux | Leave a comment