Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
brscan / usr / local / Brother / sane / setupSaneScan
Size: Mime:
#! /bin/sh
FILE_NAME=/etc/sane.d/dll.conf

case "$1" in
	-i)
	cat << EOF >> $FILE_NAME
brother
EOF
	;;
	-e)
	mv $FILE_NAME $FILE_NAME.tmp
	cat ${FILE_NAME}.tmp | sed '/^brother$/d' > ${FILE_NAME}
	rm -f ${FILE_NAME}.tmp
	;;
	*)
	;;
esac