blob: d37733fd654ec973a51ebef3a58822da46319b10 (
plain) (
blame)
1
2
3
4
5
|
#!/bin/sh
# simply sources the shrc and runs a shell with that as its environment.
# passes through all arguments that sh takes. to be used instead of sh.
. ~/etc/shrc
exec sh "$@"
|