You mean like backgrounding?
Try placing a space and the character '&' after the terminal command:
Code:
> ./someapp arg1 arg2 &
That will force the program into the background. You can bring it back to the foreground by typing the command "fg". I think backgrounding a process will let you close the Terminal window and keep the process in execution.