bin/freqs @ a362de5d1aa1

More
author Steve Losh <steve@stevelosh.com>
date Thu, 23 Jan 2020 23:35:15 -0500
parents a81cac75b4d3
children d9ee2c4aa85b
#!/usr/bin/env bash

set -euo pipefail

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