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 Rhinorhino 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 Zenor

  1. Zenor

    Self-Writing File creates infinite loop

    I'm fairly new to perl, and I was playing around with a self-writing file, which looks like this: #!/usr/bin/perl -w open Self, "myFile" ; open DaFile, ">>myFile"; my $i = 0; while (my $temp = <Self>) { print DaFile $temp if ($i>4); $i++; } $i = 0; close Self; open Self, "myFile" ...

Part and Inventory Search

Back
Top