I get this error bash on my virtual hosting, in cron tasks. My command is following:
/usr/bin/mysqldump --user=USERNAME --password="C\(mRA0_ifmv\(" DATABASE > ROOTFOLDER/backup/$(date +%F).sql && gzip ROOTFOLDER/backup/$(date +%F).sql
I hid real user, database and home folder for security purposes. So, I understand that my password causes this error, but I don't want to change it.
How can I escape open bracket char or avoid this error and why "\" doesn't work?