├── .gitignore ├── AUTHORS ├── BUGS ├── COPYING ├── ChangeLog ├── INSTALL ├── MANIFEST.in ├── Makefile ├── PKG-INFO ├── README.md ├── TODO ├── bin ├── pnuke ├── prsync ├── pscp ├── pslurp ├── pssh └── pssh-askpass ├── doc ├── index.html ├── pssh-HOWTO.html ├── pssh-HOWTO.pdf ├── pssh-HOWTO.ps └── pssh-HOWTO.sgml ├── man └── man1 │ └── pssh.1 ├── psshlib ├── __init__.py ├── askpass_client.py ├── askpass_server.py ├── cli.py ├── color.py ├── manager.py ├── psshutil.py └── task.py ├── setup.py └── test └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- 1 | -*- text -*- 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/INSTALL -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | 3 | clean: 4 | rm -rf build dist pssh.egg-info 5 | -------------------------------------------------------------------------------- /PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/PKG-INFO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | -*- text -*- 2 | 3 | 4 | -------------------------------------------------------------------------------- /bin/pnuke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/bin/pnuke -------------------------------------------------------------------------------- /bin/prsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/bin/prsync -------------------------------------------------------------------------------- /bin/pscp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/bin/pscp -------------------------------------------------------------------------------- /bin/pslurp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/bin/pslurp -------------------------------------------------------------------------------- /bin/pssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/bin/pssh -------------------------------------------------------------------------------- /bin/pssh-askpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/bin/pssh-askpass -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/pssh-HOWTO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/doc/pssh-HOWTO.html -------------------------------------------------------------------------------- /doc/pssh-HOWTO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/doc/pssh-HOWTO.pdf -------------------------------------------------------------------------------- /doc/pssh-HOWTO.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/doc/pssh-HOWTO.ps -------------------------------------------------------------------------------- /doc/pssh-HOWTO.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/doc/pssh-HOWTO.sgml -------------------------------------------------------------------------------- /man/man1/pssh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/man/man1/pssh.1 -------------------------------------------------------------------------------- /psshlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /psshlib/askpass_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/psshlib/askpass_client.py -------------------------------------------------------------------------------- /psshlib/askpass_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/psshlib/askpass_server.py -------------------------------------------------------------------------------- /psshlib/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/psshlib/cli.py -------------------------------------------------------------------------------- /psshlib/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/psshlib/color.py -------------------------------------------------------------------------------- /psshlib/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/psshlib/manager.py -------------------------------------------------------------------------------- /psshlib/psshutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/psshlib/psshutil.py -------------------------------------------------------------------------------- /psshlib/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/psshlib/task.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/setup.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbowes/pssh/HEAD/test/test.py --------------------------------------------------------------------------------