blob: 17a96d1bff3447d2f2309bcc5e2c7fc3766535d1 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
echo "WARNING: you should be calling ksh with /bin/ksh,"
echo "not with /usr/bin/ksh. Please execute chsh to fix"
echo "this. Legacy /usr/bin/ksh support will go away!"
echo ""
exec /bin/ksh $@
|