Search Results

1
vote

flush output in Bourne Shell

Try changing: echo "text" To: cat << EOF text EOF …
2
votes

detaching a process from terminal, entirely

If you are using bash, try "disown". Otherwise you can try "at now". …