i-bash/examples/functions/login

12 lines
127 B
Text
Raw Normal View History

1996-12-23 17:02:34 +00:00
# replace the `login' and `newgrp' builtins in old bourne shells
login()
{
exec login "$@"
}
newgrp()
{
exec newgrp "$@"
}