Script to (1) log into remote box, (2) connect to MySQL db (jdolitsky.blogspot.com) 1 points by jdolitsky 13y ago ↗ HN
[–] lutusp 13y ago ↗ What's the point of all this complexity? Since the system already has and uses SSH, why not do it in one line? # ssh hostname "echo 'use db; show tables' | mysql -p(password)" Or, for a remote, interactive MySQL session that prompts for a password: # ssh -t hostname mysql -p The linked content is overkill.
1 comment
[ 3.2 ms ] story [ 9.2 ms ] thread