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 dencom 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: azoulay
  • Content: Threads
  • Order by date
  1. azoulay

    Write all STDIN lines into a file

    I want to write all(5) user lines from STDIN into a file. This is my code, it doesn't work: ================================ #!/usr/perl5/bin/perl open (TMPMSG,">tempFile.txt"); while (<STDIN>) { print TMPMSG $_; } close (TMPMSG); ================================ I tried many...

Part and Inventory Search

Back
Top