forked from sh-edraft.de/sh_linux_installation_scripts
6 lines
92 B
Bash
6 lines
92 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
install_gpick() {
|
||
|
echo "Installing gpick"
|
||
|
sudo apt-get install gpick -y
|
||
|
}
|