#!/bin/sh

## this script is here only to obtain back-compatibility with the Version 3 shell
## script S, which defaults to running $SHOME/cmd/NEW
## (this way, Version 4 will generally run even if an old shell script is used for S)

target="$SHOME"/cmd/Sqpe
if test '!' -s "$target"
then
	echo $target not found; exit 1
fi
exec "$target"

