#!/bin/bash -eu
# sort-line-length: Sort lines by length
perl -pe 'print length($_), "\t"' | sort -n
