in reply to perl -n seemingly eating a line of input
echo -e '\n55\n44\n33\n22\n11' | perl -ne'@a = <>; END{ print @a; }' [download]