1
0
Fork 0

bin: Aliases for upcase and downcase

This commit is contained in:
Jeremy Kaplan 2026-04-11 22:52:48 -04:00
commit 79572c4832
2 changed files with 10 additions and 0 deletions

5
bin/downcase Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail
exec tr '[:upper:]' '[:lower:]'