Changes in / [bdfed5d:b7ab9d0]
- Location:
- client/bin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
client/bin/gbr
r611bd26 r30beeab 31 31 } 32 32 33 my @args = (" CUPS_SERVER=$host", "lp", "-d$queue", "$file");33 my @args = ("lp", "-h$host", "-d$queue", "$file"); 34 34 exec (@args) or die "Couldn't execute lp command"; -
client/bin/gbrm
r611bd26 r30beeab 34 34 35 35 if ($id eq "all") { 36 @args = (" CUPS_SERVER=$host", "cancel", "-a", "$queue");36 @args = ("cancel", "-a", "-h$host", "$queue"); 37 37 } 38 38 else { 39 @args = (" CUPS_SERVER=$host", "cancel", "$id", "$queue");39 @args = ("cancel", "-h$host", "$id", "$queue"); 40 40 } 41 41 exec (@args) or die "Couldn't execute cancel command";
Note: See TracChangeset
for help on using the changeset viewer.