Is there any bash command that will let you get the nth line of STDOUT?
That is to say, something that would take this
$ ls -l -rw-r--r--@ 1 root wh
Try this sed version:
sed
ls -l | sed '2 ! d'
It says "delete all the lines that aren't the second one".