random/touch2
2021-12-28 02:54:26 -06:00

5 lines
115 B
Text

# It makes the parent folders (if needed) while touch-ing.
#!/bin/sh
mkdir -p "$(dirname "$1")" &&
touch "$1"