23 projects tagged "Shells"
PyDSH is a toolset to help simplify the administration of remote systems. The pydsh command enables running of a command on multiple hosts in parallel over RSH, SSH, or telnet, and manages your SSH public and private keys. The pydcp command enables SCP-like functions to and from multiple hosts in parallel.
CODESH (COllaborative DEvelopment SHell) is an automatic persistent logbook for sessions of personal command line work. It records what and how is being done, for private use/reuse and for sharing selected parts with collaborators. It is an intelligent shell that automatically logs user's shell sessions. Sessions are uniquely tagged and stored in local or distributed backend repositories (ASCII flat file or Subversion or CVS based) and can be extracted and reproduced at any time by the user who created the session or by collaborators located anywhere in the world.
OneFinger is a general-purpose GUI for composing CLI commands with the mouse. Although entirely graphical, it does not attempt to hide the underlying CLI language. It increases your productivity over classical hand-typing by caching commands typed into terminals, which tend to be highly repetitive. Repeated commands can be selected from a list, ordered by last usage time. It includes an integrated file browser that helps you insert filenames without typing them. and allows you to see only those programs that make sense with a given file.
Pexpect is a Python Expect-like module. It spawns child applications, controls them, and responds to expected patterns in their output. It can be used for automating interactive applications such as ssh, ftp, passwd, telnet, etc. It can be used to automate setup scripts for duplicating software package installations on different servers. It can be used for automated software testing. It should work on any platform that supports the standard Python pty module. Its interface was designed to be easy-to-use, so performing simple tasks is easy. It includes an ANSI/VT100 terminal screen scraping module.