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 wOOdy-Soft 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 perlman

  1. perlman

    question about perl executable and functions

    If you are using a Windows OS, goto www.activeperl.com and download their Perl Development Kit 2.0. There is a way to convert perl files into executables (dependent or free-standing). I think the file name is PerlApp.pl (Usage is pathtoperlapp\PerlApp.pl -w Filename.pl -e ExecutableName.exe -d...
  2. perlman

    Compiling, Who Knows How To Complile Perl?

    If you are using a Windows OS, goto www.activeperl.com and download their Perl Development Kit 2.0. There is a way to convert perl files into executables (dependent or free-standing). I think the file name is PerlApp.pl (Usage is pathtoperlapp\PerlApp.pl -w Filename.pl -e ExecutableName.exe -d...
  3. perlman

    Hi, I'm new to perl and haven't y

    #Usage filename.pl *.pl $SearchString = "search"; $ReplaceString = "replace"; while ($FileString = shift){ @Files = `dir *$FileString* /s /b /n`; # Change this to equivalent in linux foreach $i (@Files) { chop($i); if (-e $i) { open(FILE,$i) ||...
  4. perlman

    cgi win 2000 making system command work.

    Try using the backtics to execute the command Dude. `command`;

Part and Inventory Search

Back
Top