|
NAME"Devel::MAT::Tool::Find" - list SVs matching given criteriaDESCRIPTIONThis "Devel::MAT" tool provides a command to search for SVs matching given criteria.COMMANDSfindpmat> find io IO()=IO::File at 0x55a7e4d88760: ifileno=1 ofileno=1 ... Prints a list of all the SVs that match the given filter criteria. Takes the following named options:
FILTERSnumpmat> find num SCALAR(UV) at 0x555555a1e9c0: 5 SCALAR(UV) at 0x555555c4f1b0: 2 SCALAR(UV) at 0x555555aa0dc0: 18446744073709551615 Prints a list of all the scalar SVs that have a numerical value, optionally filtering for only an exact value. Takes the following named options:
pvpmat> find pv "boot" SCALAR(PV) at 0x556e4737d968: "boot_Devel::MAT::Dumper" SCALAR(PV) at 0x556e4733a160: "boot_Cwd" ... Prints a list of all the scalar SVs that have a PV (string value) matching the supplied pattern. Normally, the pattern is interpreted as a substring match, but the "--eq" and "--regexp" options can alter this. Takes the following named options:
iopmat> find io IO()=IO::File at 0x55a7e4d88760: ifileno=1 ofileno=1 ... pmat> find io -f 2 IO()=IO::File at 0x55582b87f430: ifileno=2 ofileno=2 Searches for IO handles Takes the following named options:
blessedpmat> find blessed Config HASH(26)=Config at 0x55bd56c28930 Searches for SVs blessed into the given package name. lexicalpmat> find lexical $x UNDEF() at 0x56426e97c8b0: $x at depth 1 of CODE(PP) at 0x56426e97c5e0 ... Searches for SVs that are lexical variables of the given name. AUTHORPaul Evans <leonerd@leonerd.org.uk>
Visit the GSP FreeBSD Man Page Interface. |