wordsort (367B)
- #!/bin/sh
- # utils-extra: Collection of extra tools for Unixes
- # SPDX-FileCopyrightText: 2017-2023 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
- # SPDX-License-Identifier: MPL-2.0
- # Uses -z on sort(1), present in GNU, FreeBSD, OpenBSD, BusyBox ; absent in NetBSD
- # Any options are passed to sort(1)
- tr -d '\n' | tr ' ' '\000' | sort -z "$@" | tr '\000' ' '