10 lines
133 B
Bash
10 lines
133 B
Bash
#!/bin/sh
|
|
|
|
q(){
|
|
echo $SHLVL - 1 | bc
|
|
exit
|
|
}
|
|
|
|
test -r "$LOGIN" && . "$LOGIN"
|
|
PS1="% "
|
|
test -r "$SETENV" && . "$SETENV" && setenv sh
|