11 lines
127 B
Bash
11 lines
127 B
Bash
# replace the `login' and `newgrp' builtins in old bourne shells
|
|
|
|
login()
|
|
{
|
|
exec login "$@"
|
|
}
|
|
|
|
newgrp()
|
|
{
|
|
exec newgrp "$@"
|
|
}
|