Help pages

This commit is contained in:
joachimschmidt557 2019-06-23 18:05:08 +02:00
parent 35200e9401
commit 0973bb4f7f
2 changed files with 30 additions and 4 deletions

15
nope
View file

@ -1,8 +1,16 @@
#!/bin/sh #!/bin/sh
usage() { usage() {
echo nope cat <<EOF
echo opens files nope
opens files
Usage: nope FILE
Flags:
--help, -h Displays this help
--version, -v Show version and exit
EOF
} }
case "$@" in case "$@" in
@ -10,6 +18,9 @@ case "$@" in
usage usage
exit 1 exit 1
;; ;;
--version)
echo "nope version 0.1.0"
;;
*.pdf) *.pdf)
okular "$@" > /dev/null 2>&1 & okular "$@" > /dev/null 2>&1 &
;; ;;

View file

@ -1,7 +1,14 @@
#!/bin/sh #!/bin/sh
usage() { usage() {
echo youtube-mp3 cat <<EOF
youtube-mp3
adds options to youtube-dl to download as 320kbps MP3
Usage: youtube-mp3 URL
Additional flags for youtube-dl may be specified.
EOF
} }
# Check for youtube-dl in path # Check for youtube-dl in path
@ -16,4 +23,12 @@ if ! (which ffmpeg) ; then
exit 1 exit 1
fi fi
youtube-dl --format bestaudio -x --audio-format mp3 --audio-quality 320K -k $@ case "$@" in
--help)
usage
exit 1
;;
*)
youtube-dl --format bestaudio -x --audio-format mp3 --audio-quality 320K -k "$@"
;;
esac