Skip to content

Instantly share code, notes, and snippets.

@kasir-barati
Created September 8, 2022 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasir-barati/bf022bc96f51ed351c8fc3667eb247b3 to your computer and use it in GitHub Desktop.
Save kasir-barati/bf022bc96f51ed351c8fc3667eb247b3 to your computer and use it in GitHub Desktop.
A custom touch command to create parent directories and file too.
#!/bin/bash
mkdir -p "$(dirname "$1")" && touch "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment