Tuesday June 22, 2004
Getting destructive with tcsh addicts Many years ago I used to work (actually using the term "work' is a bit much in this context) in a Computing department at a University in the UK doing administration and some systems programming. It was a great learning ground and a great place to amuse oneself with ones colleagues. Can anyone ever get bored with using 'xset' to change the mouse acceleration of someone that left their display open? Ahh, happy days.
Still, now I'm big and responsible I would never do anything like that and could never condone such behaviour. What reminded me of this was some fantastic chaps I met at this years SUPerG conference in Phoenix (a must attend conference if you ever get the chance). They were from a large University somewhere in the world and for the purposes of this discussion we'll call them Bill and Ted. Now, both Bill and Ted work way harder than I ever used to when I was at University and know a lot more but they did have one failing and that was an unhealthy addiction to tcsh. I just have one thing to say about that. Boys, if you're reading make sure you run this on all your systems:
#!/usr/sbin/dtrace -qws
proc:::exec-success
/execname == "tcsh"/
{
printf("pid %d: Let them sweat...\n", pid);
stop();
}
Give them a while and prun(1) them. They'll soon switch to a proper shell, namely 'ksh'.