Skip to content

Instantly share code, notes, and snippets.

@jeffs
Created December 14, 2018 20:56
Show Gist options
  • Save jeffs/cb80e273e3770b45122808e9d8119ddf to your computer and use it in GitHub Desktop.
Save jeffs/cb80e273e3770b45122808e9d8119ddf to your computer and use it in GitHub Desktop.
Touching files in new directories
touch() {
for f in "$@"; do
mkdir -p "$(dirname "$f")" && /usr/bin/touch "$f"
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment