Issue
In oracle database, command "host" can be used to run bash command from database command window. Is there a equivalent command as "host" in mySql?
id='dv3'>
Solution
You can use the system
command.
system command, \! command
Executes the given command using your default command interpreter.
The system command works only in Unix.
Example:
system ls -l
Answered By - Ayman Hourieh Answer Checked By - David Marino (WPSolving Volunteer)