Cl.cam.ac.uk

6m ago
5 Views
1 Downloads
624.47 KB
223 Pages
Last View : 1m ago
Last Download : 3m ago
Upload by : Kaydence Vann
Transcription

PERL(1) Perl Programmers Reference Guide PERL(1) NAME perl Practical Extraction and Report Language SYNOPSIS perl [ sTuU ] [ hv ] [ V[:configvar] ] [ cw ] [ d[:debugger] ] [ D[number/list] ] [ pna ] [ Fpattern ] [ l[octal] ] [ 0[octal] ] [ Idir ] [ m[ ]module ] [ M[ ]’module.’ ] [ P ] [ S ] [ x[dir] ] [ i[extension] ] [ e ’command’ ] [ ] [ programfile ] [ argument ]. If you’re new to Perl, you should start with perlintro, which is a general intro for beginners and provides some background to help you navigate the rest of Perl’s extensive documentation. For ease of access, the Perl manual has been split up into several sections. Overview perl perlintro perltoc Perl overview (this section) Perl introduction for beginners Perl documentation table of contents Tutorials perlreftut perldsc perllol Perl references short introduction Perl data structures intro Perl data structures: arrays of arrays perlrequick perlretut Perl regular expressions quick start Perl regular expressions tutorial perlboot perltoot perltooc perlbot Perl Perl Perl Perl perlstyle Perl style guide perltrap perldebtut Perl traps for the unwary Perl debugging tutorial perlfaq perlfaq1 perlfaq2 perlfaq3 perlfaq4 perlfaq5 perlfaq6 perlfaq7 perlfaq8 perlfaq9 Perl frequently asked questions General Questions About Perl Obtaining and Learning about Perl Programming Tools Data Manipulation Files and Formats Regexes Perl Language Issues System Interaction Networking OO OO OO OO tutorial for beginners tutorial, part 1 tutorial, part 2 tricks and examples Reference Manual perl v5.8.0 2003-08-13 1

PERL(1) Perl Programmers Reference Guide PERL(1) perlsyn perldata perlop perlsub perlfunc perlopentut perlpacktut perlpod perlpodspec perlrun perldiag perllexwarn perldebug perlvar perlre perlref perlform perlobj perltie perldbmfilter Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl syntax data structures operators and precedence subroutines built-in functions open() tutorial pack() and unpack() tutorial plain old documentation plain old documentation format specification execution and options diagnostic messages warnings and their control debugging predefined variables regular expressions, the rest of the story references, the rest of the story formats objects objects hidden behind simple variables DBM filters perlipc perlfork perlnumber Perl interprocess communication Perl fork() information Perl number semantics perlthrtut perlothrtut Perl threads tutorial Old Perl threads tutorial perlport perllocale perluniintro perlunicode perlebcdic Perl portability guide Perl locale support Perl Unicode introduction Perl Unicode support Considerations for running Perl on EBCDIC platforms perlsec Perl security perlmod perlmodlib perlmodstyle perlmodinstall perlnewmod Perl Perl Perl Perl Perl perlutil utilities packaged with the Perl distribution perlcompile Perl compiler suite intro perlfilter Perl source filters modules: modules: modules: modules: modules: how they work how to write and use how to write modules with style how to install from CPAN preparing a new module for distribution Internals and C Language Interface 2 perlembed perldebguts perlxstut perlxs perlclib perlguts perlcall Perl ways to embed perl in your C or C application Perl debugging guts and tips Perl XS tutorial Perl XS application programming interface Internal replacements for standard C library functions Perl internal functions for those doing extensions Perl calling conventions from C perlapi perlintern perliol perlapio Perl API listing (autogenerated) Perl internal functions (autogenerated) C API for Perl’s implementation of IO in Layers Perl internal IO abstraction interface perlhack Perl hackers guide 2003-08-13 perl v5.8.0

PERL(1) Perl Programmers Reference Guide PERL(1) Miscellaneous perlbook perltodo Perl book information Perl things to do perlhist perldelta perl573delta perl572delta perl571delta perl570delta perl561delta perl56delta perl5005delta perl5004delta Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl history changes changes changes changes changes changes changes changes changes Perl Perl Perl Perl for for for for Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl Perl notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes notes records since previous version in version 5.7.3 in version 5.7.2 in version 5.7.1 in version 5.7.0 in version 5.6.1 in version 5.6 in version 5.005 in version 5.004 Language-Specific perlcn perljp perlko perltw Simplified Chinese (in EUC-CN) Japanese (in EUC-JP) Korean (in EUC-KR) Traditional Chinese (in Big5) Platform-Specific perlaix perlamiga perlapollo perlbeos perlbs2000 perlce perlcygwin perldgux perldos perlepoc perlfreebsd perlhpux perlhurd perlirix perlmachten perlmacos perlmint perlmpeix perlnetware perlos2 perlos390 perlos400 perlplan9 perlqnx perlsolaris perltru64 perluts perlvmesa perlvms perlvos perlwin32 for for for for for for for for for for for for for for for for for for for for for for for for for for for for for for for AIX AmigaOS Apollo DomainOS BeOS POSIX-BC BS2000 WinCE Cygwin DG/UX DOS EPOC FreeBSD HP-UX Hurd Irix Power MachTen Mac OS (Classic) MiNT MPE/iX NetWare OS/2 OS/390 OS/400 Plan 9 QNX Solaris Tru64 UTS VM/ESA VMS Stratus VOS Windows By default, the manpages listed above are installed in the /usr/local/man/ directory. Extensive additional documentation for Perl modules is available. The default configuration for perl will place this additional documentation in the /usr/local/lib/perl5/man directory (or else in the man subdirectory of the Perl library directory). Some of this additional documentation is distributed standard with Perl, perl v5.8.0 2003-08-13 3

PERL(1) Perl Programmers Reference Guide PERL(1) but you’ll also find documentation for third-party modules there. You should be able to view Perl’s documentation with your man (1) program by including the proper directories in the appropriate start-up files, or in the MANPATH environment variable. To find out where the configuration has installed the manpages, type: perl -V:man.dir If the directories have a common stem, such as /usr/local/man/man1 and /usr/local/man/man3, you need only to add that stem (/usr/local/man) to your man (1) configuration files or your MANPATH environment variable. If they do not share a stem, you’ll have to add both stems. If that doesn’t work for some reason, you can still use the supplied perldoc script to view module information. You might also look into getting a replacement man program. If something strange has gone wrong with your program and you’re not sure where you should look for help, try the w switch first. It will often point out exactly where the trouble is. DESCRIPTION Perl is a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information. It’s also a good language for many system management tasks. The language is intended to be practical (easy to use, efficient, complete) rather than beautiful (tiny, elegant, minimal). Perl combines (in the author’s opinion, anyway) some of the best features of C, sed, awk, and sh, so people familiar with those languages should have little difficulty with it. (Language historians will also note some vestiges of csh, Pascal, and even BASIC PLUS.) Expression syntax corresponds closely to C expression syntax. Unlike most Unix utilities, Perl does not arbitrarily limit the size of your data — if you’ve got the memory, Perl can slurp in your whole file as a single string. Recursion is of unlimited depth. And the tables used by hashes (sometimes called ‘‘associative arrays’’) grow as necessary to prevent degraded performance. Perl can use sophisticated pattern matching techniques to scan large amounts of data quickly. Although optimized for scanning text, Perl can also deal with binary data, and can make dbm files look like hashes. Setuid Perl scripts are safer than C programs through a dataflow tracing mechanism that prevents many stupid security holes. If you have a problem that would ordinarily use sed or awk or sh, but it exceeds their capabilities or must run a little faster, and you don’t want to write the silly thing in C, then Perl may be for you. There are also translators to turn your sed and awk scripts into Perl scripts. But wait, there’s more. Begun in 1993 (see perlhist), Perl version 5 is nearly a complete rewrite that provides the following additional benefits: modularity and reusability using innumerable modules Described in perlmod, perlmodlib, and perlmodinstall. embeddable and extensible Described in perlembed, perlxstut, perlxs, perlcall, perlguts, and xsubpp. roll-your-own magic variables (including multiple simultaneous DBM implementations) Described in perltie and AnyDBM File. subroutines can now be overridden, autoloaded, and prototyped Described in perlsub. arbitrarily nested data structures and anonymous functions Described in perlreftut, perlref, perldsc, and perllol. object-oriented programming Described in perlobj, perlboot, perltoot, perltooc, and perlbot. support for light-weight processes (threads) Described in perlthrtut and threads. 4 2003-08-13 perl v5.8.0

PERL(1) Perl Programmers Reference Guide PERL(1) support for Unicode, internationalization, and localization Described in perluniintro, perllocale and Locale::Maketext. lexical scoping Described in perlsub. regular expression enhancements Described in perlre, with additional examples in perlop. enhanced debugger and interactive Perl environment, with integrated editor support Described in perldebtut, perldebug and perldebguts. POSIX 1003.1 compliant library Described in POSIX. Okay, that’s definitely enough hype. AVAILABILITY Perl is available for most operating systems, including virtually all Unix-like platforms. See ‘‘Supported Platforms’’ in perlport for a listing. ENVIRONMENT See perlrun. AUTHOR Larry Wall larry@wall.org , with the help of oodles of other folks. If your Perl success stories and testimonials may be of help to others who wish to advocate the use of Perl in their applications, or if you wish to simply express your gratitude to Larry and the Perl developers, please write to perl thanks@perl.org . FILES "@INC" locations of perl libraries SEE ALSO a2p s2p awk to perl translator sed to perl translator http://www.perl.com/ http://www.cpan.org/ http://www.perl.org/ the Perl Home Page the Comprehensive Perl Archive Perl Mongers (Perl user groups) DIAGNOSTICS The use warnings pragma (and the w switch) produces some lovely diagnostics. See perldiag for explanations of all Perl’s diagnostics. The use diagnostics pragma automatically turns Perl’s normally terse warnings and errors into these longer forms. Compilation errors will tell you the line number of the error, with an indication of the next token or token type that was to be examined. (In a script passed to Perl via e switches, each e is counted as one line.) Setuid scripts have additional constraints that can produce error messages such as ‘‘Insecure dependency’’. See perlsec. Did we mention that you should definitely consider using the w switch? BUGS The w switch is not mandatory. Perl is at the mercy of your machine’s definitions of various operations such as type casting, atof(), and floating-point output with sprintf(). If your stdio requires a seek or eof between reads and writes on a particular stream, so does Perl. (This doesn’t apply to sysread() and syswrite().) While none of the built-in data types have any arbitrary size limits (apart from memory size), there are still a few arbitrary limits: a given variable name may not be longer than 251 characters. Line numbers displayed by diagnostics are internally stored as short integers, so they are limited to a maximum of 65535 (higher numbers usually being affected by wraparound). perl v5.8.0 2003-08-13 5

PERL(1) Perl Programmers Reference Guide PERL(1) You may mail your bug reports (be sure to include full configuration information as output by the myconfig program in the perl source tree, or by perl V) to perlbug@perl.org . If you’ve succeeded in compiling perl, the perlbug script in the utils/ subdirectory can be used to help mail in a bug report. Perl actually stands for Pathologically Eclectic Rubbish Lister, but don’t tell anyone I said that. NOTES The Perl motto is ‘‘There’s more than one way to do it.’’ Divining how many more is left as an exercise to the reader. The three principal virtues of a programmer are Laziness, Impatience, and Hubris. See the Camel Book for why. 6 2003-08-13 perl v5.8.0

PERLSYN(1) Perl Programmers Reference Guide PERLSYN(1) NAME perlsyn Perl syntax DESCRIPTION A Perl script consists of a sequence of declarations and statements. The sequence of statements is executed just once, unlike in sed and awk scripts, where the sequence of statements is executed for each input line. While this means that you must explicitly loop over the lines of your input file (or files), it also means you have much more control over which files and which lines you look at. (Actually, I’m lying — it is possible to do an implicit loop with either the n or p switch. It’s just not the mandatory default like it is in sed and awk.) Perl is, for the most part, a free-form language. (The only exception to this is format declarations, for obvious reasons.) Text from a "#" character until the end of the line is a comment, and is ignored. If you attempt to use /* */ C style comments, it will be interpreted either as division or pattern matching, depending on the context, and C // comments just look like a null regular expression, so don’t do that. Declarations The only things you need to declare in Perl are report formats and subroutines — and even undefined subroutines can be handled through AUTOLOAD. A variable holds the undefined value (undef) until it has been assigned a defined value, which is anything other than undef. When used as a number, undef is treated as 0; when used as a string, it is treated the empty string, ""; and when used as a reference that isn’t being assigned to, it is treated as an error. If you enable warnings, you’ll be notified of an uninitialized value whenever you treat undef as a string or a number. Well, usually. Boolean contexts, such as: my a; if ( a) {} are exempt from warnings (because they care about truth rather than definedness). Operators such as , , , , and . , that operate on undefined left values such as: my a; a ; are also always exempt from such warnings. A declaration can be put anywhere a statement can, but has no effect on the execution of the primary sequence of statements — declarations all take effect at compile time. Typically all the declarations are put at the beginning or the end of the script. However, if you’re using lexically-scoped private variables created with my(), you’ll have to make sure your format or subroutine definition is within the same block scope as the my if you expect to be able to access those private variables. Declaring a subroutine allows a subroutine name to be used as if it were a list operator from that point forward in the program. You can declare a subroutine without defining it by saying sub name, thus: sub myname; me myname 0 or die "can’t get myname"; Note that myname() functions as a list operator, not as a unary operator; so be careful to use or instead of in this case. However, if you were to declare the subroutine as sub myname ( ), then myname would function as a unary operator, so either or or would work. Subroutines declarations can also be loaded up with the require statement or both loaded and imported into your namespace with a use statement. See perlmod for details on this. A statement sequence may contain declarations of lexically-scoped variables, but apart from declaring a variable name, the declaration acts like an ordinary statement, and is elaborated within the sequence of statements as if it were an ordinary statement. That means it actually has both compile-time and run-time effects. Simple statements The only kind of simple statement is an expression evaluated for its side effects. Every simple statement must be terminated with a semicolon, unless it is the final statement in a block, in which case the semicolon is optional. (A semicolon is still encouraged there if the block takes up more than one line, because you may eventually add another line.) Note that there are some operators like eval {} and do {} that look like compound statements, but aren’t (they’re just TERMs in an expression), and thus need an explicit perl v5.8.0 2003-08-13 7

PERLSYN(1) Perl Programmers Reference Guide PERLSYN(1) termination if used as the last item in a statement. Any simple statement may optionally be followed by a SINGLE modifier, just before the terminating semicolon (or block ending). The possible modifiers are: if EXPR unless EXPR while EXPR until EXPR foreach EXPR The if and unless modifiers have the expected semantics, presuming you’re a speaker of English. The foreach modifier is an iterator: For each value in EXPR, it aliases to the value and executes the statement. The while and until modifiers have the usual "while loop" semantics (conditional evaluated first), except when applied to a do BLOCK (or to the deprecated do SUBROUTINE statement), in which case the block executes once before the conditional is evaluated. This is so that you can write loops like: do { line STDIN ; . } until line eq ".\n"; See ‘‘do’’ in perlfunc. Note also that the loop control statements described later will NOT work in this construct, because modifiers don’t take loop labels. Sorry. You can always put another block inside of it (for next) or around it (for last) to do that sort of thing. For next, just double the braces: do {{ next if x y; # do something here }} until x z; For last, you have to be more elaborate: LOOP: { do { last if x y**2; # do something here } while x z; } Compound statements In Perl, a sequence of statements that defines a scope is called a block. Sometimes a block is delimited by the file containing it (in the case of a required file, or the program as a whole), and sometimes a block is delimited by the extent of a string (in the case of an eval). But generally, a block is delimited by curly brackets, also known as braces. We will call this syntactic construct a BLOCK. The following compound statements may be used to control flow: if (EXPR) BLOCK if (EXPR) BLOCK else BLOCK if (EXPR) BLOCK elsif (EXPR) BLOCK . else BLOCK LABEL while (EXPR) BLOCK LABEL while (EXPR) BLOCK continue BLOCK LABEL for (EXPR; EXPR; EXPR) BLOCK LABEL foreach VAR (LIST) BLOCK LABEL foreach VAR (LIST) BLOCK continue BLOCK LABEL BLOCK continue BLOCK Note that, unlike C and Pascal, these are defined in terms of BLOCKs, not statements. This means that the curly brackets are required no dangling statements allowed. If you want to write conditionals without curly brackets there are several other ways to do it. The following all do the same thing: 8 2003-08-13 perl v5.8.0

PERLSYN(1) Perl Programmers Reference Guide PERLSYN(1) if (!open(FOO)) { die "Can’t open FOO: !"; } die "Can’t open FOO: !" unless open(FOO); open(FOO) or die "Can’t open FOO: !"; # FOO or bust! open(FOO) ? ’hi mom’ : die "Can’t open FOO: !"; # a bit exotic, that last one The if statement is straightforward. Because BLOCKs are always bounded by curly brackets, there is never any ambiguity about which if an else goes with. If you use unless in place of if, the sense of the test is reversed. The while statement executes the block as long as the expression is true (does not evaluate to the null string "" or 0 or "0"). The LABEL is optional, and if present, consists of an identifier followed by a colon. The LABEL identifies the loop for the loop control statements next, last, and redo. If the LABEL is omitted, the loop control statement refers to the innermost enclosing loop. This may include dynamically looking back your call-stack at run time to find the LABEL. Such desperate behavior triggers a warning if you use the use warnings pragma or the w flag. Unlike a foreach statement, a while statement never implicitly localises any variables. If there is a continue BLOCK, it is always executed just before the conditional is about to be evaluated again, just like the third part of a for loop in C. Thus it can be used to increment a loop variable, even when the loop has been continued via the next statement (which is similar to the C continue statement). Loop Control The next command is like the continue statement in C; it starts the next iteration of the loop: LINE: while ( STDIN ) { next LINE if /ˆ#/; . } # discard comments The last command is like the break statement in C (as used in loops); it immediately exits the loop in question. The continue block, if any, is not executed: LINE: while ( STDIN ) { last LINE if /ˆ /; . } # exit when done with header The redo command restarts the loop block without evaluating the conditional again. The continue block, if any, is not executed. This command is normally used by programs that want to lie to themselves about what was just input. For example, when processing a file like /etc/termcap. If your input lines might end in backslashes to indicate continuation, you want to skip ahead and get the next record. while ( ) { chomp; if (s/\\ //) { . ; redo unless eof(); } # now process } which is Perl short-hand for the more explicitly written version: perl v5.8.0 2003-08-13 9

PERLSYN(1) Perl Programmers Reference Guide PERLSYN(1) LINE: while (defined( line ARGV )) { chomp( line); if ( line s/\\ //) { line . ARGV ; redo LINE unless eof(); # not eof(ARGV)! } # now process line } Note that if there were a continue block on the above code, it would get executed only on lines discarded by the regex (since redo skips the continue block). A continue block is often used to reset line counters or ?pat? one-time matches: # inspired by :1, g/fred/s//WILMA/ while ( ) { ?(fred)? && s//WILMA 1 WILMA/; ?(barney)? && s//BETTY 1 BETTY/; ?(homer)? && s//MARGE 1 MARGE/; } continue { print " ARGV .: "; close ARGV if eof(); # reset . reset if eof(); # reset ?pat? } If the word while is replaced by the word until, the sense of the test is reversed, but the conditional is still tested before the first iteration. The loop control statements don’t work in an if or unless, since they aren’t loops. You can double the braces to make them such, though. if (/pattern/) {{ last if /fred/; next if /barney/; # same effect as "last", but doesn’t document as well # do something here }} This is caused by the fact that a block by itself acts as a loop that executes once, see ‘‘Basic BLOCKs and Switch Statements’’. The form while/if BLOCK BLOCK, available in Perl 4, is no longer available. occurrence of if BLOCK by if (do BLOCK). Replace any For Loops Perl’s C style for loop works like the corresponding while loop; that means that this: for ( i 1; i 10; i ) { . } is the same as this: i 1; while ( i 10) { . } continue { i ; } There is one minor difference: if variables are declared with my in the initialization section of the for, the lexical scope of those variables is exactly the for loop (the body of the loop and the control sections). Besides the normal array index looping, for can lend itself to many other interesting applications. Here’s one that avoids the problem you get into if you explicitly test for end-of-file on an interactive file descriptor causing your program to appear to hang. 10 2003-08-13 perl v5.8.0

PERLSYN(1) Perl Programmers Reference Guide PERLSYN(1) on a tty -t STDIN && -t STDOUT; sub prompt { print "yes? " if on a tty } for ( prompt(); STDIN ; prompt() ) { # do something } Foreach Loops The foreach loop iterates over a normal list value and sets the variable VAR to be each element of the list in turn. If the variable is preceded with the keyword my, then it is lexically scoped, and is therefore visible only within the loop. Otherwise, the variable is implicitly local to the loop and regains its former value upon exiting the loop. If the variable was previously declared with my, it uses that variable instead of the global one, but it’s still localized to the loop. The foreach keyword is actually a synonym for the for keyword, so you can use foreach for readability or for for brevity. (Or because the Bourne shell is more familiar to you than csh, so writing for comes more naturally.) If VAR is omitted, is set to each value. If any element of LIST is an lvalue, you can modify it by modifying VAR inside the loop. Conversely, if any element of LIST is NOT an lvalue, any attempt to modify that element will fail. In other words, the foreach loop index variable is an implicit alias for each item in the list that you’re looping over. If any part of LIST is an array, foreach will get very confused if you add or remove elements within the loop body, for example with splice. So don’t do that. foreach probably won’t do what you expect if VAR is a tied or other special variable. Don’t do that either. Examples: for (@ary) { s/foo/bar/ } for my elem (@elements) { elem * 2; } for count (10,9,8,7,6,5,4,3,2,1,’BOOM’) { print count, "\n"; sleep(1); } for (1.15) { print "Merry Christmas\n"; } foreach item (split(/:[\\\n:]*/, ENV{TERMCAP})) { print "Item: item\n"; } Here’s how a C programmer might code up a particular algorithm in Perl: for (my i 0; i @ary1; i ) { for (my j 0; j @ary2; j ) { if ( ary1[ i] ary2[ j]) { last; # can’t go to outer :-( } ary1[ i] ary2[ j]; } # this is where that last takes me } Whereas here’s how a Perl programmer more comfortable with the idiom might do it: OUTER: for my wid (@ary1) { INNER: for my jet (@ary2) { next OUTER if wid jet; wid jet; } } See how much easier this is? It’s cleaner, safer, and faster. It’s cleaner because it’s less noisy. It’s safer perl v5.8.0 2003-08-13 11

PERLSYN(1) Perl Programmers Reference Guide PERLSYN(1) because if code gets added between the inner and outer loops later on, the new code won’t be accidentally executed. The next explicitly iterates the other loop rather than merely terminating the inner one. And it’s faster because Perl executes a foreach statement more rapidly than it would the equivalent for loop. Basic BLOCKs and Switch Statements A BLOCK by itself (labeled or not) is semantically equivalent to a loop that executes once. Thus you can use any of the loop control statements in it to leave or restart the block. (Note that this is NOT true in eval{}, sub{}, or contrary to popular belief do{} blocks, which do NOT count as loops.) The continue block is optional. The BLOCK construct is particularly nice for doing case structures. SWITCH: { if (/ˆabc/) { abc 1; last SWITCH; } if (/ˆdef/) { def 1; last SWITCH; } if (/ˆxyz/) { xyz 1; last SWITCH; } nothing 1; } There is no official switch statement in Perl, because there are already several ways to write the equivalent. However, starting from Perl 5.8 to get switch and case one can use the Switch extension and say: use Switch; after which one has switch and case. It is not as fast as it could be because it’s not really part of the language (it’s done using source filters) but it is available, and it’s very flexible. In addition to the above BLOCK construct, you could write SWITCH: { abc 1, last SWITCH def 1, last SWITCH xyz 1, last SWITCH nothing 1; } if /ˆabc/; if /ˆdef/; if /ˆxyz/; (That’s actually not as strange as it looks once you realize that you can use loop control ‘‘operators’’ within an expression, That’s just the normal C comma operator.) or SWITCH: { /ˆabc/ && do { abc 1; last SWITCH; }; /ˆdef/ && do { def 1; last SWITCH; }; /ˆxyz/ && do { xyz 1; last SWITCH; }; nothing 1; } or formatted so it stands out more as a ‘‘proper’’ switch statement: SWITCH: { /ˆabc/ && do { abc 1; last SWITCH; }; /ˆdef/ && do { def 1; last SWITCH; }; 12 2003-08-13 perl v5.8.0

PERLSYN(1) Perl Programmers Reference Guide /ˆxyz/ PERLSYN(1) && do { xyz 1; last SWITCH; }; nothing 1; } or SWITCH: { /ˆabc/ and /ˆdef/ and /ˆxyz/ and nothing } abc 1, last SWITCH; def 1, last SWITCH; xyz 1, last SWITCH; 1; or even, horrors, if (/ˆabc/) { abc 1 elsif (/ˆdef/) { def 1 elsif (/ˆxyz/) { xyz 1 else { nothing } } } 1 } A common idiom for a switch statement is to use foreach’s aliasing to make a temporary assignment to for convenient matching: SWITCH: for ( where) { /In Card Names/ && /Anywhere/ && /In Rulings/ && die "unknown value for } do { push @flags, ’-e’; last; }; do { push @flags, ’-h’; last; }; do { last; }; form variable where: ‘ where’"; Another interesting approach to a switch statement is arrange for a do block to return the proper value: amode do { if ( flag elsif ( flag elsif ( flag if ( flag else } }; & & & & O RDONLY) O WRONLY) O RDWR) O CREAT) { { { { { "r" } # XXX: isn’t this 0? ( flag & O APPEND) ? "a" : "w" } "w " } ( flag & O APPEND) ? "a " : "r " } Or print do { ( flags & O WRONLY) ? "write-only" ( flags & O RDWR) ? "read-write" "read-only"; }; : : Or if you are certain that all the && clauses are true, you can use something like this, which ‘‘switches’’ on the value of the HTTP USER AGENT environment variable. perl v5.8.0 2003-08-13 13

PERLSYN(1) Perl Programmers Reference Guide PERLSYN(1) #!/usr/bin/perl # pick out jargon file page based on browser dir ’http://www.wins.uva.nl/ mes/jargon’; for ( ENV{HTTP USER AGENT}) { page /Mac/ &&

PERL(1) Perl Programmers Reference Guide PERL(1) NAME perl Practical Extraction and Report Language SYNOPSIS perl [ sTuU ][ hv ][ V [:configvar ]] [ cw ][ d [:deb

Related Documents:

41 Crane Cam 51 Beauty City View 49 Helicopter Cam 37 EFP on Tripod Lift Cam Lift Cam 36 35 47 EFP on Tripod 50 48 40 42 Hard Cam EFP on Tripod 43 EFP on Tripod EFP on Tripod 44 39 45 EFP on Tripod 2 EFP on Tripod 1 4 3 38 EFP on Tripod 41 49 Helicopter Cam 46 Scooter Cam 51 Beauty City View 37 3 KM MASS START M 36 35. 66 50 48 EFP on Tripod 40

Cam follower – standard 16 10.92 Large hydraulic cam follower – 32mm 16 14.95 Cam pulley – standard 2 21.50 RACELINE adjustable vernier pulley kit – pair 1 140.00 Cam pulley bolt 2 1.19 Cam belt 1 25.36 Cam belt tensioner pulley 1 25.2

cam/cran b (figure 2 ls ignition controller harnesses, pn 19355863 ignition (30a fused) h g f e coils 1-3-5-7 coils 2-4-6-8 k cam/crank crank cam/crank cam note: cam plugs directly into sensor, not oem pigtail. 24x crank 1x cam (rear) - included black crank sensor connecto

Integrated CAD/CAE/CAM SystemsIntegrated CAD/CAE/CAM Systems Professional CAD/CAE/CAM ToolsProfessional CAD/CAE/CAM Tools - Unigraphics NX (Electronic Data Systems Corp - EDS)-CATIA (Dassault Systems-IBM)- Pro/ENGINEER (PTC) - I-DEAS (EDS) Other CAD and Graphics Packages - AutoCAD Mechanical Desktop / Inventor

stud. When mounting the Cam Follower, it is easy to fix its location by tightening a set screw to the stepped por-tion. Thus, this type is suitable when a large number of Cam Followers are used in a machine such as a pallet changer. Cam Follower G Taking over the basic performance of Standard Type Cam Follower, this cam follower realizes a .

separation of industrial cam-follower systems. Typical industrial cam-follower systems include a force closed cam joint and a follower train containing both substantial mass and stiffness. Providing the cam and follower remain in contact, this is a one degree-of-freedom (DOF) system. It becomes a two-DOF system once the cam and follower

Installation uide 3 Brivo Onair Cam Installation uide Subscriptions Before You Begin All dealers must have a Brivo Onair Cam Reseller Account and access to Partner Portal. Adding a Brivo Onair Cam subscription to an account This document provides a description of how you can activate, edit, or deactivate a Brivo Onair Cam subscription for

Analysis and Simulation of Cam Follower Mechanism Using Polynomial Cam Profile . The modelling and simulation of a cam follower mechanism is performed on SolidWorks and results are presented for various cam speeds. . motion, gives