http://tehbemfqolualhxwkyimu3bdob5s4hkrfuwbwxzbblncjy2j2owgolqd.onion/documentation.html
Here is an example using a function value: ~ $ def _foo(args, stdin=None): ... return 'The arguments were: %s' % ' '.join(args) ~ $ $TAKO_SETTINGS.aliases['foo'] = _foo ~ $ foo bar baz
The arguments were: bar baz ~ # foo bar baz | grep baz # pipes, I/O redirection, etc, still work!
The arguments were: bar baz Alias functions should generally be defined with a leading underscore.