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}
12