8 lines
88 B
Bash
Executable File
8 lines
88 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -n $(command -v git) ]]; then
|
|
echo "jep"
|
|
else
|
|
echo "noup"
|
|
fi
|