Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
At work, almost every single time I run the prove utility, I type prove -l t/. I got tired of typing that. The following shell script in my bin/ seems silly, but it's really scratched an itch:
#!/usr/local/bin/bash
case "$1" in
"")/usr/local/bin/prove -l t/ ;; # no arguments
* )/usr/local/bin/prove $* ;; # Pass 'em straight through
esac
case (Score:2)
Sorry, but I can't resist golfing^Wtinkering with shell scripts...
$# is $#ARGV, more or less. Also, it's always better to use "$@" instead of $* because one day, you'll feed that sucker a filename with a space in. And it won't break with the former.
-Dom
Re: (Score:2)
Thanks for the tip about "$@"!