One of the simplest yet most powerful commands in terms of interfacing is the exec command. It takes a single argument and passes it directly to the shell. For example, if you wanted to clear the screen, you could enter exec clear. Or better yet, to define a clear alias to do the same thing, enter alias clear 'exec clear'. Exec takes only one argument so for more complicated commands, mind your quoting.