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

14 lines
162 B
Plaintext
Raw Normal View History

2023-01-31 08:47:50 +04:00
#-------------------------
source ${LIBSH}/libeval.sh
read -e -p '$ ' -r line
input=/tmp/q231_$$
echo "$line" >$input
evalQ231_s $input
rm -f $input
exit 0