LoginSignup
1
2

More than 5 years have passed since last update.

MySQL client パスワードのエスケープ

Posted at
mysql -u user -h hostname -pp(assword

p(assword みたいなパスワードでmysql clientを使ってログインしようとすると以下のようにエラーとなる

-bash: 期待してない token `(' のあたりにシンタックスエラー

バックスラッシュを使ってエスケープしてやればよい

mysql -u user -h hostname -pp\(assword
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2