8 lines
112 B
Bash
8 lines
112 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
|
||
|
echo Starting mysql server in background
|
||
|
mysqld --user=root --daemonize&
|
||
|
echo Starting shell
|
||
|
bash
|