This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
notes:perl_cheat_sheet [2026/06/05 07:26] 8.209.98.94 old revision restored (2013/09/15 03:16) |
notes:perl_cheat_sheet [2026/06/07 22:32] (current) 114.119.135.37 old revision restored (2013/09/15 02:44) |
||
|---|---|---|---|
| Line 14: | Line 14: | ||
| * Parenthesis are optional unless part of syntax. | * Parenthesis are optional unless part of syntax. | ||
| * '' | * '' | ||
| - | * '' | ||
| ===== Numbers ===== | ===== Numbers ===== | ||
| Line 91: | Line 90: | ||
| * ''<>'' | * ''<>'' | ||
| chomp; | chomp; | ||
| - | print LOGFILE | + | print "It was $_ that I saw!\n"; |
| }</ | }</ | ||
| * '' | * '' | ||
| print sort <>; | print sort <>; | ||
| - | * C-like printf function %g for number auto-format, | + | * C-like printf function %g for number auto-format, |
| - | my $format = "The items are: | + | |
| - | printf $format, @items; | + | |
| - | printf "The items are: | + | |
| - | </ | + | |
| - | * Filehandles can be barewords (upper-cased) or variables. Special filehandles are : STDIN, STDOUT, STDERR, DATA, ARGV, and ARGVOUT .<code perl> | + | |
| - | open BEDROCK, '> | + | |
| - | open LOG, '>>: | + | |
| - | open my $bedrock, '>: | + | |
| - | binmode STDOUT, ': | + | |
| - | * '' | + | |
| ===== User Subroutines ===== | ===== User Subroutines ===== | ||