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