Tag Archive


android arduino Aruba brewing CompaniesIHate daily emails efficiency Food git GNUseful incomplete thoughts linux lxc Mac mashing mobile pogo price comparisons PuTTY reference smarthome SSL Technology tips and tricks todo to read ubiquiti useful Mac links vim Windows

Datagram SyslogServer – the Windows syslog server logging solution for your enterprise!

http://www.syslogserver.com/syslogagent.html Nice.  Handy tool I can see a few uses for.

Removing duplicate lines with sed

# delete duplicate, consecutive lines from a file emulates “uniq”. # First line in a set of duplicate lines is kept, rest are deleted. sed ‘$!N; /^\.\\n\1$/!P; D’ via Removing duplicate lines with sed.