#!/usr/bin/env sh
# SPDX-License-Identifier: MIT
# ──────────────────────────────────────────────────────────────────────────────
# $source: cappysan-dotfile-scripts$
# ──────────────────────────────────────────────────────────────────────────────
#
# NAME
#      to-uppercase - convert to uppercase
#
# SEE ALSO
#      tr(1)
#
exec tr '[:lower:]' '[:upper:]'
