1
Fork 0

Add the mc function.

This commit is contained in:
Bauke 2023-02-23 11:56:41 +01:00
parent 6a2a1a7366
commit 626b3ee33f
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 7 additions and 0 deletions

View File

@ -21,6 +21,13 @@ get-feed-url () {
done
}
# Create a directory and cd into it.
# mc <directory>
mc () {
mkdir -p "$1"
cd "$1"
}
# Converts any given files to 128K Opus using ffmpeg.
# to-opus <file ...>
to-opus () {