Perl gives you unless in addition to if. Use it, but don't abuse it.
Use unless when it makes code more readable, but don't try to use it for everything:
If the condition gets complex, switch to if.
Don't use an else with unless.
Use if (!$condition) if that's more English-sounding in the context of your problem/code.