To run some script in the background so that it keeps working and can print messages to the console, but so that right after launching it we get the command line back (or some script that launches the target script in the background continues executing) — you need to put an "&" sign after the launch line:
$ ./myscript &
Comments