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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by aabiir

  1. aabiir

    Data Structures / What to use

    In PERL for an n dimensional data structure all n-1 dimensions are references and have to be dereferenced as such. Also, you should just use Lincoln Stein's CGI.pm instead of writing html. I create a lot of forms, menus and stuff and never have written a line of html. -abir
  2. aabiir

    How to automate an SMTP session with PERL/shell script

    PERL modules aren't good enough for you? ...
  3. aabiir

    perl newbie..please help!

    #!/usr/bin/perl $x = 'package[@name=\'firstlevel\']/folder[@name=\'secondlevel\']/folder[@name=\'thirdlevel\']/report[@name=\'filename\']</reportSearchPath>'; @y = ($x =~ /\'(\w+?)\'/g); $y = join('\\', @y); print "$y\n";
  4. aabiir

    perl for automation, ideas, suggestions?

    Hello everyone, My first post here so please forgive any faux pas. I am wondering of ways to automate the following task. Currently, I am ssh'ing into a license server and entering some standard info which this server uses to generate a license key. This is an interactive command line based...

Part and Inventory Search

Back
Top