mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-05 03:10:50 +02:00
12 lines
127 B
Bash
12 lines
127 B
Bash
# replace the `login' and `newgrp' builtins in old bourne shells
|
|
|
|
login()
|
|
{
|
|
exec login "$@"
|
|
}
|
|
|
|
newgrp()
|
|
{
|
|
exec newgrp "$@"
|
|
}
|