forked from sh-edraft.de/sh_linux_installation_scripts
6 lines
94 B
Bash
6 lines
94 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
install_geary() {
|
||
|
ehco "Installing geary"
|
||
|
sudo apt-get install geary -y
|
||
|
}
|