On Fri, 2005-07-15 at 08:30 -0700, Kevin O'Gorman wrote: > I forget why, but I tried 'disable lp0' to see what it did to the > output of 'lpstat -t', and > got the results one would expect. However, 'enable lp0' gives this > odd error message: > > -/bin/bash: enable: lp0: not a shell builtin > > Now, this makes no sense to me at all.
enable is a bash shell builtin (which acts on shell builtins, coincidentally; see bash(1)). Use '/usr/bin/enable lp0', or '`which enable` lp0', or 'enable -n enable; enable lp0'. -- [email protected] mailing list

