X7ROOT File Manager
Current Path:
/usr/lib/cups/backend
usr
/
lib
/
cups
/
backend
/
📁
..
📄
dnssd
(19.08 KB)
📄
failover
(19.03 KB)
📄
http
(71.32 KB)
📄
https
(71.32 KB)
📄
implicitclass
(15 KB)
📄
ipp
(71.32 KB)
📄
ipps
(71.32 KB)
📄
lpd
(47.21 KB)
📄
ncp
(1.05 KB)
📄
parallel
(23.05 KB)
📄
serial
(18.96 KB)
📄
snmp
(27.2 KB)
📄
socket
(39.16 KB)
📄
usb
(35.13 KB)
Editing: ncp
#!/bin/sh # This is a modified version of 'ncpprint'. It can now be used as a CUPS # backend. # Modifications: # Copyright (C) 2002 Red Hat, inc # Copyright (C) 2002 Tim Waugh # Before modification: shipped as /usr/share/printconf/util/ncpprint if [ -z "$*" ] then # This is where we would enumerate all the URIs we support. # Patches welcome. exit 0 fi FILE=$6 if [ -z "$FILE" ] then FILE=- fi # $DEVICE_URI is 'ncp://[user:password@]server/queue' URI=${DEVICE_URI#*://} queue=${URI#*/} URI=${URI%/$queue} server=${URI#*@} URI=${URI%$server} URI=${URI%@} if [ -n "$URI" ] then user=${URI%:*} URI=${URI#$user} password=${URI#:} fi #echo user: ${user-(none)} #echo password: ${password-(none)} #echo server: $server #echo queue: $queue if [ -n "$user" ] then if [ -n "$password" ] then /usr/bin/nprint -S "$server" -q "$queue" -U "$user" -P "$password" -N "$FILE" 2>/dev/null else /usr/bin/nprint -S "$server" -q "$queue" -U "$user" -n -N "$FILE" 2>/dev/null fi else /usr/bin/nprint -S "$server" -q "$queue" -N "$FILE" 2>/dev/null fi
Upload File
Create Folder