You could use something like the following
scp -r username_Linuxmachine@LinuxMachineAddress:Path/To/File Path/To/Local/System/Directory
This will copy the File
to the specified local directory on the system you are currently working on.
The -r
flag tells scp
to recursively copy if the remote path is indeed a directory.