Files
bash/examples/functions/login
T

12 lines
127 B
Bash

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