bin/freqs @ a81cac75b4d3

freqs and props
author Steve Losh <steve@stevelosh.com>
date Thu, 23 Jan 2020 23:35:07 -0500
parents (none)
children d9ee2c4aa85b
#!/usr/bin/env bash

set -euo pipefail

awk '{ c[$0]++ } END { for (l in c) print c[l], l }'