mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-20 10:12:06 +01:00
5 lines
148 B
Bash
Executable File
5 lines
148 B
Bash
Executable File
# Installs package if not yet installed
|
|
if [ $(sudo dpkg-query -l | grep "ii $1" | wc -l) = 0 ]; then
|
|
sudo apt-get install $1 -y > /dev/null
|
|
fi
|