Change command line argument parsing
This commit is contained in:
parent
d100183b5c
commit
0ce80a8767
2 changed files with 5 additions and 5 deletions
8
nope
8
nope
|
|
@ -5,19 +5,19 @@ usage() {
|
||||||
echo opens files
|
echo opens files
|
||||||
}
|
}
|
||||||
|
|
||||||
case $1 in
|
case $@ in
|
||||||
--help)
|
--help)
|
||||||
usage
|
usage
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
*.pdf)
|
*.pdf)
|
||||||
okular $1 > /dev/null 2>&1 &
|
okular $@ > /dev/null 2>&1 &
|
||||||
;;
|
;;
|
||||||
*.html)
|
*.html)
|
||||||
firefox $1 > /dev/null 2>&1 &
|
firefox $@ > /dev/null 2>&1 &
|
||||||
;;
|
;;
|
||||||
*.mp4|*.mp3)
|
*.mp4|*.mp3)
|
||||||
vlc $1 > /dev/null 2>&1 &
|
vlc $@ > /dev/null 2>&1 &
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "No rule for opening this file has been specified"
|
echo "No rule for opening this file has been specified"
|
||||||
|
|
|
||||||
|
|
@ -16,4 +16,4 @@ if ! (which ffmpeg) ; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
youtube-dl --format bestaudio -x --audio-format mp3 --audio-quality 320K -k $1
|
youtube-dl --format bestaudio -x --audio-format mp3 --audio-quality 320K -k $@
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue