ok so i need to do a mysqldump of a database and this is what i have
mysqldump -uroot -psdfas@N$pr!nT --databases app_pro > /srv/DUMPFILE.SQL
but i am getting this error
-bash: !nT: event not found
seems to be having a hard time with the password…any other way to mysql dump
Put
-psdfas@N$pr!nTin single quotes:The problem is that bash is interpreting the
!. Strings in single quotes aren’t interpreted.