| jonsmith1982 | sorry used |
| AnAnt | how can a perl script find out its location ? (Not the PWD) |
| BinGOs | FindBin |
| AnAnt | BinGOs: that's a perl module ? |
| BinGOs | It is a core perl module, yeah. core::FindBin |
| buubot | :FindBin will be added by christmas |
| BinGOs | core:FindBin |
| buubot | FindBin was added to Perl5.00307 |
| BinGOs | perldoc FindBin for details. |
| AnAnt | thx |
| integral | GumbyBRAIN: I've never quite understood what philosophy has to do with the post office. |
| GumbyBRAIN | No, that's the post office. |
| Dandre_ | thanks jonsmith1982 |
| Harzilein | GumbyBRAIN: Now come on, tell us more about that relation between the post office and philosophy. |
| GumbyBRAIN | Come the revolution, customs stays out of and where do i get those makefile errors. |
| whitenoyce | what is qr/some text/i ? or where can i find out about it i got man perl up man perl? perlretut perldata ? |
| BinGOs | perlop |
| infi | perlop |
| whitenoyce | so can someone give an example of where qr/some text/i would be useful? clearly i need it for WWW:Mech but what it means iunno ok never mind found it in the manpage |
| action | CPAN upload: JQuery-1.00 by PETERG |
| CPAN | upload: JQuery-1.00 by PETERG |
| AnAnt | how do I skip a loop ? continue ? |
| nanonyme | skip as in what? |
| AnAnt | while (condition) { bla bla ...; if (cond2) { skip bla2 & continue looping } bla2 } how do I skip bla2 & continue looping ? |
| f00li5h | next while(<>){ next if line_unwanted ( $_ ); do_stuff_with ( $_ ) ; } |
| AnAnt | oh, ok, I put the wrong cond2 ! |
| ofer0 | also, break() is last() |