I just realized that one can push or pull data streams through SSH as well. Just used it with DD and it saved me a lot of time.
pushing with DD:
1 |
ssh target_address dd if=remotefile | dd of=localfile |
pulling with DD:
1 |
dd if=localfile | ssh target_address dd of=remotefile |