linux - How to continue writing command lines when terminal is hanging -
right now, if type in makes wanting response, have press ctrl + c stop running , waiting. there way continue writing commands without pressing ctrl + c don't stop program waiting?
you can add & end of command line, , command runs in background, while continue @ terminal.
ex:
find . -name "*.pdf" > mypdflist.txt &
Comments
Post a Comment