Is there a \"canonical\" way of doing that? I\'ve been using head -n | tail -1 which does the trick, but I\'ve been wondering if there\'s a Bash tool that speci
head -n | tail -1
# print line number 52 sed '52!d' file
Useful one-line scripts for sed