0

Is there any command or way to essentially "scp" a full directory from a raspberry pi to my linux PC using ssh?

Josh Zindler
  • 15
  • 1
  • 5

1 Answers1

0

Did you try man scp?

There you would have found following lines:

-r Recursively copy entire directories. Note that scp follows symbolic links encountered in the tree traversal.

So try scp -r [...].

jake
  • 1,367
  • 1
  • 11
  • 23