Last active 1752986921

head-tail-trim.sh Raw
1echo foo\nbar\nbaz | head -n 2
2# foo
3# bar
4
5echo foo\nbar\nbaz | tail -n 2
6# bar
7# baz