14 lines
162 B
Plaintext
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
|