MySQL: start SQL from shell script Posted on 18/09/2009 by bigspoon The following code starts the SQL from the shell script directly, without additional SQL file #!/bin/sh --/. &> /dev/null; exec mysql "$@" select 'Hello, world!' as test ; The detailed explanation of the trick is here