Archives for: "July 2006"

Kill processes started by system

July 13th, 2006
Way, way too many times, I've seen some sort of process chewing up all my system processing cycles in Windows. Unfortunately, many times if I try to kill these processes, the system won't let me stating "access is denied". To work around this, use the… more »

bash loops and more

July 7th, 2006
Here's some examples of bash loops: #!/bin/bash for i in $( ls ); do echo item: $i done #!/bin/bash for i in `seq 1 10`; do… more »