chapter2: report persons by state
This commit is contained in:
parent
e3b2c7d410
commit
cf86ddfc59
17
chapter_02/report_persons_by_state.sh
Executable file
17
chapter_02/report_persons_by_state.sh
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cat ../data/persons.csv | \
|
||||||
|
awk -F ',' '{
|
||||||
|
print $6 ", " $2 " " $1;
|
||||||
|
}' | \
|
||||||
|
sort | \
|
||||||
|
awk -F ',' '
|
||||||
|
{
|
||||||
|
if ($1 == LastState) {
|
||||||
|
print "\t" $2;
|
||||||
|
} else {
|
||||||
|
LastState = $1;
|
||||||
|
print $1;
|
||||||
|
print "\t" $2;
|
||||||
|
}
|
||||||
|
}'
|
Loading…
Reference in New Issue
Block a user