Forums

connecting to Mysql through bash script

.

#!/bin/bash
mysql -u angaylinux3 -h angaylinux3.mysql.pythonanywhere-services.com -p 'angaylinux3$angtab' ;
#use angaylinux3$angtab;
insert into stud values (5,'meera');
select * from stud;
END

What are you getting back when you try to run it?