├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── client.py ├── docs ├── client_test_run.PNG └── server_test_run.PNG └── server.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearlike/Remote-CMD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearlike/Remote-CMD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearlike/Remote-CMD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearlike/Remote-CMD/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearlike/Remote-CMD/HEAD/_config.yml -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearlike/Remote-CMD/HEAD/client.py -------------------------------------------------------------------------------- /docs/client_test_run.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearlike/Remote-CMD/HEAD/docs/client_test_run.PNG -------------------------------------------------------------------------------- /docs/server_test_run.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearlike/Remote-CMD/HEAD/docs/server_test_run.PNG -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearlike/Remote-CMD/HEAD/server.py --------------------------------------------------------------------------------