source: trunk/third/bash/examples/functions/login @ 12959

Revision 12959, 127 bytes checked in by tb, 26 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r12958, which included commits to RCS files with non-trunk default branches.
Line 
1# replace the `login' and `newgrp' builtins in old bourne shells
2
3login()
4{
5        exec login "$@"
6}
7
8newgrp()
9{
10        exec newgrp "$@"
11}
Note: See TracBrowser for help on using the repository browser.