Scp: Revision history

From Leechfinger
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

23 May 2024

  • curprev 01:5201:52, 23 May 2024 Leechfinger talk contribs 509 bytes +509 Created page with "Secure Copy Protocol (SCP) is a command-line utility in Linux that securely copies files and folders between two Unix systems on a network. SCP uses Secure Shell (SSH) to authenticate systems and encrypt data, so the information is still encrypted even if traffic is intercepted. == Copy newest downloaded files == We wanted to transfer the latest 8 files we downloaded. <syntaxhighlight lang="bash" line> # scp $(ls -lt | head -8 | awk '{print $9}') 192.168.5.41:~/ </synta..."