Skip to content

Commit a8c3703

Browse files
committed
NEW: Crear una base de datos
1 parent 19deaa6 commit a8c3703

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

create-database

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
mysql -u root -p <<EOT
3+
CREATE DATABASE $1;
4+
SHOW DATABASES;
5+
EOT

0 commit comments

Comments
 (0)