random/touch2

6 lines
115 B
Text
Raw Normal View History

2021-04-19 13:54:49 -05:00
# It makes the parent folders (if needed) while touch-ing.
2021-12-28 02:54:26 -06:00
#!/bin/sh
2021-04-19 13:54:49 -05:00
mkdir -p "$(dirname "$1")" &&
touch "$1"