Add the mc function.
This commit is contained in:
parent
6a2a1a7366
commit
626b3ee33f
|
@ -21,6 +21,13 @@ get-feed-url () {
|
||||||
done
|
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.
|
# Converts any given files to 128K Opus using ffmpeg.
|
||||||
# to-opus <file ...>
|
# to-opus <file ...>
|
||||||
to-opus () {
|
to-opus () {
|
||||||
|
|
Loading…
Reference in New Issue