mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 22:58:43 +01:00
4 lines
148 B
Bash
Executable file
4 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
|