A piggy bank of commands, fixes, succinct reviews, some mini articles and technical opinions from a (mostly) Perl developer.

Jump to

Quick reference

Delete a file starting with a dash

You accidentally created a file called "-.log"

To delete it, instead of
rm -.log
try
rm ./-.log