This commit is contained in:
* 2017-07-24 01:30:14 +02:00
parent 6c7e005da7
commit 6fc6666da5
4 changed files with 9 additions and 6 deletions

2
sgit
View file

@ -4,7 +4,7 @@ set -ex
[ -n $"{1}" ] && git config --global user.email "${1}"
git add --all
git commit --all
git commit --all -m fix
git push
git show
git status

View file

@ -4,7 +4,7 @@ set -ex
read -p "Wie ist die URL? : " url
read -p "Wo sollen die Dateien heruntergeladen werden? : " pfad
read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/60k] : " format
read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/4k] : " format
if [ "$format" == "opus" ]
then
@ -15,7 +15,7 @@ then
elif [ "$format" == "video" ]
then
format="-f 43"
elif [ "$format" == "60k" ]
elif [ "$format" == "4k" ]
then
format="-f 303+251"
fi

View file

@ -4,7 +4,7 @@ set -ex
read -p "Wie ist die URL? : " url
read -p "Wo sollen die Dateien heruntergeladen werden? : " pfad
read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST] : " format
read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/4k] : " format
if [ "$format" == "opus" ]
then
@ -15,6 +15,9 @@ then
elif [ "$format" == "video" ]
then
format="-f 43"
elif [ "$format" == "4k" ]
then
format="-f 303+251"
fi
mkdir -p $pfad

View file

@ -16,7 +16,7 @@ then
voll="-fs"
fi
read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/60k] : " format
read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/4k] : " format
if [ "$format" == "opus" ]
then
@ -27,7 +27,7 @@ then
elif [ "$format" == "video" ]
then
format="-f 43"
elif [ "$format" == "60k" ]
elif [ "$format" == "4k" ]
then
format="-f 303+251"
fi