Main public logs

From Leechfinger
Jump to navigationJump to search

Combined display of all available logs of Leechfinger. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 01:52, 23 May 2024 Leechfinger talk contribs created page Scp (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...")