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". …
8
votes

BASH: Copy named files recursively, preserving folder structure

One way: tar cf - <files> | (cd /dest; tar xf -) …