> The more of this type of thing you add the harder it is on those of us > with tiny flash boot setups.
Surely you don't have swap on those? Can you make it conditional? if (! ~ /dev/sd*/swap /dev/sd*/swap) { blah, blah... } I think will work: The patterns are not subjected to file name matching before the ~ command is executed, so they need not be enclosed in quotation marks. I'll hold thumbs :-) ++L