क्या एक सरल इनलाइन शैली SSH कमांड करना संभव है, उदाहरण के लिए:
ssh foo@bar.com { cd foo/bar && rm *.foobar }
क्या एक सरल इनलाइन शैली SSH कमांड करना संभव है, उदाहरण के लिए:
ssh foo@bar.com { cd foo/bar && rm *.foobar }
जवाबों:
आप cd foo/bar && rm *.foobar
दूरस्थ मशीन पर अमल करना चाहते हैं , बस करना चाहिए
ssh foo@bar.com 'cd foo/bar && rm *.foobar'
और देखें 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]
भागों आप चाहते हैं:
ssh [user@]hostname [command]