• File: scl_enabled
  • Full Path: /home/masbinta/public_html/admin/installer/css/sass/sym404/root/usr/bin/scl_enabled
  • File size: 258 bytes
  • MIME-type: text/x-shellscript
  • Charset: utf-8
#!/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