Ist es möglich, einen einfachen Inline-SSH-Befehl auszuführen, zum Beispiel:
ssh [email protected] { cd foo/bar && rm *.foobar }
Ist es möglich, einen einfachen Inline-SSH-Befehl auszuführen, zum Beispiel:
ssh [email protected] { cd foo/bar && rm *.foobar }
Wenn Sie cd foo/bar && rm *.foobar
auf dem entfernten Computer ausführen möchten , tun Sie dies einfach
ssh [email protected] 'cd foo/bar && rm *.foobar'
und sehen man ssh
...
ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec] [-D
[bind_address:]port] [-e escape_char] [-F configfile]
[-i identity_file] [-L [bind_address:]port:host:hostport]
[-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] [-R
[bind_address:]port:host:hostport] [-S ctl_path] [-w tunnel:tunnel
[user@]hostname [command]
Die Teile, die Sie wollen:
ssh [user@]hostname [command]
Stil 1:
ssh user@host 'embedded command'
Stil 2:
ssh user@host " $(cat cmd.txt) "
cmd.txt ist eine Datei, die Ihren Remote-Befehl enthält, der sich auf Ihrem lokalen Computer befindet
quelle
ja ist es :
quelle