Copy over network using tar and netcat

To fast copy something over a network use the following combination of tar and netcat:

dest$ nc -l 8000 | tar -x
sour$ tar -pc directory |  nc host 8000