output asked headers in the order they were asked; avoid header name spoofing by...
[hband-tools.git] / user-tools / Tail
blobf8a42026faacf40ccc0f895372990c7b38a8567b
1 #!/bin/bash
3 true <<EOF
4 =pod
6 =head1 NAME
8 Tail - output as many lines from the end of files as many lines on the terminal currently
10 =cut
12 EOF
14 tail -n "$((${LINES:-$(tput lines)}-1))" "$@"