upload copy file via ssh

February 12, 2021 · 1 min read
post Linux

如何從 local machine 經 ssh 去 copy 檔案到 raspberrypi
解決方法十分簡單…

我可以使用 scp command
scp [File to Copy] [Destination]

scp "C:/Users/Chi/Desktop/kali/wordlist.zip" pi@raspberrypi.local:/home/pi/Documents/wordlists

copy file from local machine via ssh to remote
copy file from local machine via ssh to remote

Hope you find it useful