#!/bin/sh
#
# Copyright (C) 2021-2022 by Intevation GmbH
# Authors:
# Thomas Arendsen Hein <thomas@intevation.de>
#
# count identical lines from stdin, sorted numerically

sort | uniq -c | sort -n "$@"
