6 lines
94 B
Bash
6 lines
94 B
Bash
#!/bin/bash
|
|
|
|
install_geary() {
|
|
echo "Installing geary"
|
|
sudo apt-get install geary -y
|
|
} |