Home
last modified time | relevance | path

Searched refs:remote_command (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Doc/library/
Dpipes.rst59 >>> remote_command = 'ssh home {}'.format(quote(command))
60 >>> print remote_command
65 >>> remote_command = shlex.split(remote_command)
66 >>> remote_command
68 >>> command = shlex.split(remote_command[-1])
/external/autotest/server/site_tests/network_DiskFull/
Dnetwork_DiskFull.py13 from autotest_lib.server.cros import remote_command
90 with remote_command.Command(self._client, disk_filler_command) \
/external/openssh/
Dssh.c1300 options.remote_command != NULL || in main()
1313 if (sshbuf_len(command) != 0 && options.remote_command != NULL) in main()
1318 options.remote_command == NULL && !no_shell_flag) in main()
1330 if (sshbuf_len(command) == 0 && options.remote_command == NULL) in main()
1366 if (options.remote_command != NULL) { in main()
1367 debug3("expanding RemoteCommand: %s", options.remote_command); in main()
1368 cp = options.remote_command; in main()
1369 options.remote_command = default_client_percent_expand(cp, in main()
1371 debug3("expanded RemoteCommand: %s", options.remote_command); in main()
1373 if ((r = sshbuf_put(command, options.remote_command, in main()
[all …]
Dreadconf.h141 char *remote_command; member
Dreadconf.c1590 charptr = &options->remote_command; in process_config_line_depth()
2004 options->remote_command = NULL; in initialize_options()
2251 CLEAR_ON_NONE(options->remote_command); in fill_default_options()
2771 dump_cfg_string(oRemoteCommand, o->remote_command); in dump_client_config()
/external/python/cpython3/Doc/library/
Dshlex.rst77 >>> remote_command = 'ssh home {}'.format(quote(command))
78 >>> print(remote_command)
84 >>> remote_command = split(remote_command)
85 >>> remote_command
87 >>> command = split(remote_command[-1])