6 lines
125 B
Text
6 lines
125 B
Text
|
|
#!/bin/sh
|
||
|
|
test -f /etc/profile || exit 1
|
||
|
|
test -f /etc/profile.sh || exit 1
|
||
|
|
test -f /etc/profile.xrsh || exit 1
|
||
|
|
exit 0
|