firmware/bin/exsql

15 lines
218 B
Plaintext
Raw Normal View History

2018-06-08 01:59:03 +00:00
#!/bin/bash
if [ $# -lt 1 ]; then
echo -e "\nUsage: `basename $0` file ..."
echo -e "Execute stvm M-SQL files scripts\n"
exit 0;
fi
while [ $# -ne 0 ]
do
stvm SQL --msql=$1
# echo $?
shift
done