Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. KentCK

    Multi-dimension Array conventions

    Oh Gawd! I'm starting to understand this. When will the inhumanity of it all end?!?!?!? Next in our list of errors (done soon I hope. Line 526 of 630): delete(VPNSESSION[$4][PORT]) Which I of course changed to: delete(VPNSESSION[$4,PORT]) But it still doesn't work. Are we trying to...
  2. KentCK

    Multi-dimension Array conventions

    Department of Redundancy Department on that P.S., eh?
  3. KentCK

    Multi-dimension Array conventions

    So then: if ($4 in VPNSESSION) if (PORT in VPNSESSION[$4]) if ("startim" in VPNSESSION[$4][PORT]) SESSTIME = time(YEAR,MONTH,DAY,HOUR,MINUTE,SECOND) - VPNSESSION[$4][PORT]["startim"] should read: if ($4 in VPNSESSION) if (PORT in VPNSESSION[$4]) if...
  4. KentCK

    Multi-dimension Array conventions

    I have an AWK script that I'm working on and, unfortunately, I don't know AWK at all. I know PERL better so I am trying to convert the AWK script to PERL using the a2p.exe included with the ActiveState perl install. Anyway..... The a2p.exe bombs out on several lines. The first one is...

Part and Inventory Search

Back
Top