[but not head - excepto el encabezado]. Programa para copiar líneas excepto las N primeras o últimas.
$ buthead 5 < archivo.txt
$ buthead 5 < archivo.txt > nuevo_archivo.txt
$ cat archivo.txt | buthead 10 | grep "palabra"
$ buthead -5 < archivo.txt > ultimo_5_líneas.txt