projects
/
saartuer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
4f9482a
)
nice alias system
author
Constantin Berhard
<constantin@exxxtremesys.lu>
Sun, 20 Oct 2013 02:00:24 +0000
(
04:00
+0200)
committer
Constantin Berhard
<constantin@exxxtremesys.lu>
Sun, 20 Oct 2013 02:00:24 +0000
(
04:00
+0200)
tyshell
patch
|
blob
|
history
diff --git
a/tyshell
b/tyshell
index 9f327258fd21c1f2b8c05e4d09971e2d04165313..c35ec0ebbe9da65439d6411246ceeecff076ebce 100755
(executable)
--- a/
tyshell
+++ b/
tyshell
@@
-51,14
+51,21
@@
def whocmd(c):
p = pwd.getpwnam(n)
print (p.pw_name, " - ", p.pw_gecos)
p = pwd.getpwnam(n)
print (p.pw_name, " - ", p.pw_gecos)
-commands = {
+def alias (cmds, aliases):
+ for newname, oldname in aliases.items():
+ cmds[newname] = cmds[oldname]
+ return cmds
+
+commands = alias({
'exit': exitcmd,
'help': helpcmd,
'open': sendcmd(tuerSock, 'unlock'),
'exit': exitcmd,
'help': helpcmd,
'open': sendcmd(tuerSock, 'unlock'),
- 'unlock': sendcmd(tuerSock, 'unlock'),
'buzz': sendcmd(tuerSock, 'buzz'),
'who': whocmd,
'buzz': sendcmd(tuerSock, 'buzz'),
'who': whocmd,
-}
+},{
+ # aliases
+ 'unlock': 'open',
+})
def complete_command(cmd):
'''returns a list of commands (as strings) starting with cmd'''
def complete_command(cmd):
'''returns a list of commands (as strings) starting with cmd'''