Kaydet (Commit) 5f1b2708 authored tarafından Eric S. Raymond's avatar Eric S. Raymond

Bug fix: ? and ! were not full aliases for `help' and `shell' as implied in

the documentation; the cases `? foo' and `! foo' failed.
üst 7a11671e
......@@ -90,15 +90,15 @@ class Cmd:
def onecmd(self, line):
line = string.strip(line)
if line == '?':
line = 'help'
elif line == '!':
if not line:
return self.emptyline()
elif line[0] == '?':
line = 'help ' + line[1:]
elif line[0] == '!':
if hasattr(self, 'do_shell'):
line = 'shell'
line = 'shell ' + line[1:]
else:
return self.default(line)
elif not line:
return self.emptyline()
self.lastcmd = line
i, n = 0, len(line)
while i < n and line[i] in self.identchars: i = i+1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment