random/touch2
2021-04-20 00:24:49 +05:30

5 lines
117 B
Text
Executable file

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