How do I create a directory on remote host if it doesn't exist without ssh-ing in?

后端 未结 6 1982
南笙
南笙 2021-02-01 00:57

I\'m not sure if this is possible or not. Basically, I\'m writing a script that allows me to scp a file to my hosting. This is it so far. Argument 1 is the file and argument 2 i

6条回答
  •  时光取名叫无心
    2021-02-01 01:35

    You can use rsync.

    For example,

    rsync -ave ssh fileToCopy ssh.myhost.net:/some/nonExisting/dirToCopyTO
    

    Note about rsync:

    rsync is utility software and network protocol for Unix which synchronizes files and directories from one location to another. It minimizes data transfer sizes by using delta encoding when appropriate using the rsync algorithm which is faster than other tools.

提交回复
热议问题