11 lines
166 B
Bash
Executable File
11 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
# info: Check rehel or not
|
|
# options: none
|
|
|
|
# example: v-check-rhel-utility
|
|
|
|
if [ -f '/etc/redhat-release' ]; then
|
|
echo -n "+"
|
|
else
|
|
echo -n "-"
|
|
fi |