2025年5月13日 mkdir -p path && touch path/to.txtを一発で行うエイリアス ~/.bashrc Copy mkfile() { mkdir -p "$(dirname "$1")" && touch "$1"; }