Created
December 18, 2013 00:27
-
-
Save jonahbron/8015330 to your computer and use it in GitHub Desktop.
Create a new, empty file if it does not exist. Creates parent directories if necessary.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a new, empty file if it does not exist. Creates parent directories if necessary. | |
# | |
# author Jonah Dahlquist | |
# license CC0 | |
punch() { | |
mkdir -p $(dirname $1) | |
touch $1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment