是否可以更改 plesk 计划任务中的命令长度限制?

Is it possible to change command length limits in plesk scheduled task?

我有这个命令行,它已经运行到 cpanel 主机中:

mysql -hlocalhost -e "use xxx_xx; update xxx_jshopping_manufacturers set manufacturer_publish = 0 where \`name_es-ES\` NOT IN ('BULL SOUND', 'ROYAL', 'BLACK + DECKER (ELECTROD)', 'SAMSUNG', 'DAEWOO', 'OSTER', 'WAHL', 'REMINGTON', 'BROTHER', 'CORELLE', 'SINGER', 'PANASONIC', 'FRIGIDAIRE', 'LG', 'PHILIPS ELECTRONICA', 'PIONEER', 'SONY', 'MOTOROLA', 'DEWALT', 'APPLE', 'JVC', 'MAXELL', 'WELL', 'STANLEY', 'LASKO', 'WESTINGHOUSE', 'CATA', 'FARBERWARE', 'BLACK & DECKER (HERRAM)', 'PHILIPS', 'BLAUPUNKT', 'RAYOVAC', 'BLU', 'JBL', 'BLACK & DECKER (HERRAM)','MUEBLES', 'ALTEC', 'SMART BALANCE', 'NEWLINK', 'YEZZ', 'HUAWEI', 'FORD', 'WINDMERE','DRIJA','REAL SALOON','INGCO'); select count(product_id)as '--- Product quantity ---' from xxx_jshopping_products; select \`name_es-ES\` as '--- Brands that are hidden ---' from xxx_jshopping_manufacturers where manufacturer_publish = 0;" | mailx -r sender@domain.com -s 'your site has been updated' destination@domain.com cc@domain.com

此命令在 mysql 数据库中运行查询以隐藏一些项目,然后通过电子邮件发送结果,它一直有效,直到现在我必须将此站点移动到 Centos / plesk 托管,我已对脚本进行更改以包含用户和密码,它通过单击 plesk 计划任务面板上的 "Run now" 按钮照常运行,但是,当我单击 "Ok" 按钮保存 cron 时,它给了我这个错误

Error: Incorrect parameter values. cmd: The command cannot be longer than 980 characters.

有没有办法摆脱这个限制?

不解决最大长度问题也是可以的。

像这样创建一个脚本文件,它将运行。

mysql -h hostname -otherParametersAsNeeded <<EOF1
  use xxx_xx;
  update xxx_database set ...
  ...
EOF1