diff options
author | xengineering <me@xengineering.eu> | 2023-02-04 11:05:10 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-04 11:05:10 +0100 |
commit | e33ceb594329ae21c841922a85f232102297b1d2 (patch) | |
tree | 44bba10401d0c25e905ce5982707d1eb9ba2e6c9 | |
parent | 479c77a44ed3bae36cc61caf40cf8759fb42dc36 (diff) | |
download | scripts-e33ceb594329ae21c841922a85f232102297b1d2.tar scripts-e33ceb594329ae21c841922a85f232102297b1d2.tar.zst scripts-e33ceb594329ae21c841922a85f232102297b1d2.zip |
Replace which by command -v
-rwxr-xr-x | radio.sh | 2 | ||||
-rwxr-xr-x | tv.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ station="$1" trap 'exit 0' 2 15 # check dependency and warn user if necessary -if ! which mpv > /dev/null 2>&1 +if ! command -v mpv > /dev/null 2>&1 then echo 'You have to install mpv (e.g. sudo pacman -S mpv mpv-mpris)' exit 1 @@ -13,7 +13,7 @@ station="$1" trap 'exit 0' 2 15 # check dependency and warn user if necessary -if ! which mpv > /dev/null 2>&1 +if ! command -v mpv > /dev/null 2>&1 then echo 'You have to install mpv (e.g. sudo pacman -S mpv mpv-mpris)' exit 1 |