configs/test.bash
2023-08-22 22:12:01 -05:00

10 lines
166 B
Bash
Executable file

#!/bin/bash
command_exists() { type "$1" &> /dev/null; }
if command_exists "apt-get"; then
PM="apt-get"
elif command_exists "yum"; then
PM="yum"
fi
echo $PM