5 lines
138 B
Plaintext
Raw Permalink Normal View History

2024-10-29 22:57:09 -05:00
# shellcheck disable=SC2148
# Create an empty file and any necessary directories
touchp() {
mkdir -p "$(dirname "$1")" && touch "$1"
}