in reply to Default Line in Loops
# but have you tried this? foreach (sort <FILE>) { print; } while (sort <FILE>) { print; } [download]
print while <FH>; [download]
while (sort <FH>) { print; } [download]
for (<FH>) { print; } [download]