scl-utils/scl_enabled
2011-12-15 10:53:17 +01:00

16 lines
258 B
Bash
Executable File

#!/bin/sh
eval "SCLS=(${X_SCLS[*]})"
[ -z "$SCLS" ] && exit 1
[ -z "$*" ] && exit 0
for scl in $*; do
FOUND=0
for i in `seq 0 ${#SCLS[@]}`; do
if [ "${SCLS[$i]}" == "$scl" ]; then
FOUND=1;
break;
fi;
done
[ $FOUND == 0 ] && exit 1;
done
exit 0