Linux环境shell脚本编码
dbIp="$1" dbPort="$2" dbUser="$3" dbPass="$4" schemas="$5" dumpPath="$6" theadCount="$7" mysqlshLogPath="$8" mysqlsh -h$dbIp -P$dbPort -u$dbUser -p$dbPass --js --verbose --log-level=@debug3 -e "util.dumpSchemas($schemas,$dumpPath,{‘threads‘:$theadCount})" >$mysqlshLogPath 2>&1