Transfer Files and Disk Images Over SSH
Prerequisets Linux/Unix host Linux/Unix destination with SSH server Ready, Set, Go! Getting right down to it, here is a quick simple snippet I use quite often to transfer batches of files (often text, or other highly compress-able files) : tar cz file.foo folder foo/* | ssh user@destination.host.com ‘cat > ~/file.tar.gz’ Today I found myself wanting […]