1
0
Fork 0
mirror of https://github.com/Findus23/la-tools.git synced 2024-08-27 19:52:15 +02:00
la-tools/lame.sh

16 lines
377 B
Bash
Raw Normal View History

2014-02-23 15:26:32 +01:00
#!/bin/bash
#apt-get update
if dpkg -l lame|grep -q ii
then
echo "Lame ist bereits installiert"
zenity --info --title "Info" --text "Lame ist bereits installiert"
exit
fi
if sudo apt-get install lame
then
zenity --info --title "Erfolg" --text "Lame wurde erfolgreich installiert"
else
zenity --error --title "Fehler" --text "Lame wurde nicht erfolgreich installiert"
fis