6 lines
88 B
Bash
6 lines
88 B
Bash
#!/bin/bash
|
|
|
|
install_git() {
|
|
echo "Installing git"
|
|
sudo apt-get install git -y
|
|
} |