/usr/lib/scilab-scimysql/demos/mysql_clean.sh is in scilab-scimysql 0.1.1-3build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 | #!/bin/sh
# This file can be used to create database glpk in MySQL.
USERNAME=$1
echo MySQL cleaning is called for user $USERNAME.
mysql -f -u $USERNAME -p < scripts/erase.sql
|