Dobrica Pavlinušić's random unstructured stuff
Shell: Revision 4
Welcome to scratch pad of usefull shell snippets

{toc: }

^ remove all php4 packages with apt-get

.pre
dpkg -l | grep php4 | awk '{ print $2 }' | xargs apt-get remove -y
.pre

^ use socat as simple serial program

.pre
socat - /dev/ttyS0,b9600,echo=0,raw
.pre