5 lines
120 B
Bash
5 lines
120 B
Bash
|
#!/bin/bash
|
||
|
# Should not be executable, only sourced by other scripts
|
||
|
|
||
|
command_exists() { command -v ${1} >/dev/null; }
|