i-bash/examples/functions/login
2009-09-12 16:46:49 +00:00

11 lines
127 B
Bash

# replace the `login' and `newgrp' builtins in old bourne shells
login()
{
exec login "$@"
}
newgrp()
{
exec newgrp "$@"
}