Perl
Install Perl module
# cpan
cpan> install HTML::CalendarMonthSimple
Test if a module is already installed
Perl foreach
If you iterate in Perl of something
there is automatically a variable $_ with the current iteration in it
{
print "$_";
}
Some commands use this variable if you don't name one
{
/foo/ and print "Found foo!";
}
Man kann aber natürlich auch eine Variable angeben
{
print "$x";
}
See also Perl foreach looping and Perl variables.
Perl Debugger
s execute the next command (and step also in method calls)
n next command (but skip method calls)
Return repeat last selection
x $FOO prints the value of the variable
r run until the end of the method (or the next breakpoint)
c run until the end (or the next breakpoint)
l (small L) print the next 10 lines of code
- print the previous 10 lines of code
S print all method names
S main print all method names
b METHODENNAME Brakepoint for this method
b NUMMER Brakepoint for this line number (use l (small L) to get the line numbers)
t print the executed lines
q quit debugger
R Restart program
T Show Stacktrace
See also Perl Debugger