Come posso creare uno script bash che controlla se un programma è già installato e, in caso contrario, lo installa?
Grazie per l'aiuto.
Ecco il codice che ho finora:
#/bin/bash
PS3="choose an option"
select opcion in "Installing_Youtube" "exit"
do
case $opcion in
"Installing_Youtube")
youtube-dl > /usr/bin
if [ $? -eq 127 ] ; then
echo "installing youtube"
apt-get update
apt-get install youtube-dl
mkdir Videos
else
echo "Youtube already installed"
fi
;;
"exit")
exit
apt-mark showmanual
installati con l'installazione successiva con qualcosa del genere apt-get install "$(< package.list)"
.
/usr/bin
?