aboutsummaryrefslogtreecommitdiff
path: root/functions/mcd.fish
blob: 25336228889c5288ce6c06a54db7979628b49063 (plain)
1
2
3
4
function mcd --description 'Make and cd to a directory'
  mkdir -p "$argv"
  cd "$argv"
end