I have an Ubuntu server with MySQL.
On the command line, this works
mysqldump -u root -p paydaydebt
(then I have to manually type the password)
On the command line, these do not work:
mysqldump -u root -p{password} paydaydebt
mysqldump -u root --password={password} paydaydebt
Is there any way I can enter the password with -p or --password?