Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
awk '{v[$1]+=$2}END{for(i in v)print i,v[i]}' /input/file
cut -d ' ' -f 1 /input/file | sort -u | while read v; do echo -n "$v "; grep "^$v " /input/file | cut -d ' ' -f 2 | tr '\n' '+' | sed 's/+$/\n/' | bc; done