From 626b3ee33f558975ae17d8e28e7989bd1fa20086 Mon Sep 17 00:00:00 2001 From: Bauke Date: Thu, 23 Feb 2023 11:56:41 +0100 Subject: [PATCH] Add the mc function. --- .functions.zsh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.functions.zsh b/.functions.zsh index 02e1479..d2874c5 100644 --- a/.functions.zsh +++ b/.functions.zsh @@ -21,6 +21,13 @@ get-feed-url () { done } +# Create a directory and cd into it. +# mc +mc () { + mkdir -p "$1" + cd "$1" +} + # Converts any given files to 128K Opus using ffmpeg. # to-opus to-opus () {