Earlier quoted context omitted.
Try `body`: https://github.com/jeroenjanssens/data-science-at-the-comman... $ echo 'header\ne\nd\na\nb\nc\nb' | body sort | body uniq header a b c d e
Heh, at first I thought you meant a body command like this one, which I've written in the past: $ cat body_test.txt 1 This 2 is 3 a 4 file 5 to 6 test 7 the 8 body 9 command 10 which 11 is 12 a 13 complement 14 to 15 head 16 and 17 tail. $ cat `which body` sed -n $1,$2p $3 $ body 5 10 body_test.txt 5 to 6 test 7 the 8 body 9 command 10 which
function body_alias() {
sed -n $1,$2p $3
}alias body=body_alias
I used to have little scripts like body in my own ~/bin or /usr/local/bin but I've been slowly moving those to my .bashrc which I can copy to new systems I log on to.