14 lines
216 B
Bash
Executable File
14 lines
216 B
Bash
Executable File
#!/bin/sh -e
|
|
if [ -z $2 ]
|
|
then
|
|
echo "First argument should be a category."
|
|
exit 2
|
|
fi
|
|
|
|
mkdir -p "$HOME/ytdl/$1/"
|
|
update-ksh-completions &
|
|
cd "$HOME/ytdl/$1/"
|
|
shift
|
|
yt-dlp --cookies-from-browser chromium "$@"
|
|
|