User Tools

Site Tools


task_boiler

This is an old revision of the document!


task boiler

Place to cook the tasks. Once they are boiled enough, move them to a separate plate.

Start the first heading with “=====”

apply unix commands to all but the first line

sample task

Let's say we want to sort a series of numbers in descending order but keep the header at the top. For example, given

$ echo -e "value\n8\n2\n6\n3"
value
8
2
6
3

we want to output

value
2
3
6
8
$ echo -e "value\n8\n2\n6\n3" | sort -rn
8
6
3
2
value
task_boiler.1660252101.txt.gz · Last modified: 2022/08/11 21:08 by raju