📌  相关文章
📜  将文件从 ssh 复制到本地 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:48.298000             🧑  作者: Mango

代码示例6
# This need to be done in server side only
$ sudo apt install openssh-server
$ sudo systemctl enable ssh
$ sudo systemctl start ssh
# Need to be done in client side only
$ scp myfile.txt remote_user@remote_ip_address