1
vote
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 -)
…
