#!/bin/sh
|
|
|
|
# Via Chris Siebenmann:
|
|
# https://mastodon.social/@cks/114592789936016576
|
|
|
|
trap '' 13 # shut up, Bash
|
|
sort "$@" | uniq -c | sort -nr
|