Joined July 2011
·
Posted to
Perl: uninstall perl cpan module
over 1 year
ago
Also note that there's CPANPLUS library which provides cpanp script.
You can use cpanp
to delete installed packages:
cpanp -u POE
However, you need to have CPANPLUS installed to perform this.
Posted to
Learning Perl
over 1 year
ago
Talking about single and double quotes, I think this behavior was inherited from the Unix shell, which has the same behavior. Try:
echo 'Non-interpolable: $X' "Interpolable: $X"
Talking about string formatting operations in Python (modulo). Python documentation of modulo reffers to sprintf() syntax in the C language. Perl also has printf() implementation:
printf "I ate a %s", $steak;
And I hope you'll enjoy learning Perl and using it in your projects. Good luck.
Achievements
124 Karma
5,126 Total ProTip Views
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Altruist
Increase developer well-being by sharing at least 20 open source projects
T-Rex
Have at least one original repo where C is the dominant language
Velociraptor
Have at least one original repo where Perl is the dominant language
Velociraptor 3
Have at least three original repos where Perl is the dominant language
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
Thank you dave, I'll take a look at it.