Có thể thực hiện một lệnh SSH kiểu nội tuyến đơn giản, ví dụ:
ssh foo@bar.com { cd foo/bar && rm *.foobar }
Có thể thực hiện một lệnh SSH kiểu nội tuyến đơn giản, ví dụ:
ssh foo@bar.com { cd foo/bar && rm *.foobar }
Câu trả lời:
Nếu bạn muốn thực thi cd foo/bar && rm *.foobar
trên máy từ xa, chỉ cần làm
ssh foo@bar.com 'cd foo/bar && rm *.foobar'
và xem 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]
Những phần bạn muốn:
ssh [user@]hostname [command]
kiểu 1: ssh user@host 'embedded command'
kiểu 2: ssh user@host " $(cat cmd.txt) "
cmd.txt là tệp chứa lệnh từ xa được định vị tại máy cục bộ của bạn