configs/test.bash

10 lines
166 B
Bash
Raw Normal View History

2023-08-22 22:12:01 -05:00
#!/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