mooc/www/sys/fs/usr/script/evalQ231

14 lines
162 B
Plaintext

#-------------------------
source ${LIBSH}/libeval.sh
read -e -p '$ ' -r line
input=/tmp/q231_$$
echo "$line" >$input
evalQ231_s $input
rm -f $input
exit 0