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 strongm 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: *

  • Users: tl66
  • Order by date
  1. tl66

    I despair! no where else to turn. CGI error

    maybe your transfer type is not correct, you should transfer perl script by ASCII,not binary.as we know \n is not same on different os. you can ask your friend to send it to you again and test ?
  2. tl66

    Putting a limit on find and replace

    No, because STDIN returns a string ,so if you enter nothing, the $example's default value is ''.
  3. tl66

    Creating an list/array with glob & then test

    while(glob("*/")) { &goHere if($_ eq "images/"); } or you can use -d while(glob "*"){ &goHere if(-d and $_ eq 'images'); }

Part and Inventory Search

Back
Top