source:
trunk/third/bash/examples/functions/login
@
12959
Revision 12959, 127 bytes checked in by tb, 26 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[12958] | 1 | # replace the `login' and `newgrp' builtins in old bourne shells |
2 | ||
3 | login() | |
4 | { | |
5 | exec login "$@" | |
6 | } | |
7 | ||
8 | newgrp() | |
9 | { | |
10 | exec newgrp "$@" | |
11 | } |
Note: See TracBrowser
for help on using the repository browser.