in reply to Re: login juniper ERX
in thread login to juniper ERX
Quick tip:
If you don't want to worry about escaping stuff twice, you can use
Prompt => map("/$_/", qr/...any regexp.../)
as in
Prompt => map("/$_/", qr/\[ERX02#\]/)
You can even safely use modifiers like i and x on the qr//.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: login juniper ERX
by Mejaz (Novice) on Jun 09, 2008 at 12:17 UTC | |
by Corion (Patriarch) on Jun 09, 2008 at 12:41 UTC | |
|