Joe Lillibridge 95c99334da
wip
2024-10-29 22:57:09 -05:00

5 lines
138 B
Plaintext

# shellcheck disable=SC2148
# Create an empty file and any necessary directories
touchp() {
mkdir -p "$(dirname "$1")" && touch "$1"
}