summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Alexey Borzenkov [Tue, 16 Dec 2008 21:39:33 +0000]
Code clean up and new features
Initial code was a little dirty, so I cleaned it up.
Now command handler can be installed with --install option.
Now shebang can support arguments, so #!/usr/bin/perl -w would
actually start perl with -w (yes, I know that perl on Windows is a
smartass, but what about other interpreters that might need it?).
Alexey Borzenkov [Tue, 16 Dec 2008 17:57:10 +0000]
We must ignore SIGINT
Otherwise, if a child ignores SIGINT, parent would silently die when
Ctrl+C is pressed and child would become orphaned. This creates weird
side effects when scripts are executed from a console file manager.
Alexey Borzenkov [Tue, 16 Dec 2008 17:46:01 +0000]
Initial version