in reply to debugging commands

The syntax is V [pkg [vars]]. You can use regex patterns for the vars if you provide either a leading ~ or ! ( for negation).

Some examples:

V main !\w ( print vars in main that have a non-word character in them) V main ~_ ( print vars in main with an underscore in them)
Hope this helps.

Replies are listed 'Best First'.
Re: Re: debugging commands
by Ntav (Sexton) on Sep 09, 2001 at 12:42 UTC
    thanks, it was the regex syntax being slightly different from =~ m// which threw me.
    Ntav