mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-25 20:58:37 -06:00
6 lines
116 B
Bash
6 lines
116 B
Bash
#!/bin/sh
|
|
|
|
# It makes the parent folders (if needed) while touch-ing.
|
|
|
|
mkdir -p "$(dirname "$1")" &&
|
|
touch "$1"
|