repo.or.cz
/
bash.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Patch-ID: bash40-021
[bash.git]
/
examples
/
functions
/
login
blob
3d596838fb56c60a4fba5e59564ccaccbe4ef1dc
1
# replace the `login' and `newgrp' builtins in old bourne shells
2
3
login()
4
{
5
exec login "$@"
6
}
7
8
newgrp()
9
{
10
exec newgrp "$@"
11
}