これを行うためのUNIXワンライナーはありますか?
head -n 3 test.txt > out_dir/test.head.txt
grep hello test.txt > out_dir/test.tmp.txt
cat out_dir/test.head.txt out_dir/test.tmp.txt > out_dir/test.hello.txt
rm out_dir/test.head.txt out_dir/test.tmp.txt
つまり、特定のファイルからヘッダーといくつかの grep 行を同時に取得したいのです。