12 lines
139 B
Bash
Executable file
12 lines
139 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source ./os_probe.bash
|
|
|
|
|
|
if [ "$osp" = "Debian" ]; then
|
|
echo "Debian"
|
|
fi
|
|
|
|
if [ "$osp" = "Arch" ]; then
|
|
echo "Arch"
|
|
fi
|