summaryrefslogtreecommitdiff
path: root/doc/examples.rst
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2013-12-02 13:18:58 -0800
committerThomas Kluyver <takowl@gmail.com>2013-12-02 13:18:58 -0800
commit0c1bcae869c7fd9607f187c828de5eb2a2d7bbe5 (patch)
tree24eb44e3d08fba199265a84b5843beb32272417c /doc/examples.rst
parent5caa22112a11f2cabdacd8302536580012a2bf98 (diff)
downloadpexpect-0c1bcae869c7fd9607f187c828de5eb2a2d7bbe5.tar.gz
Remove unhelpful examples
Diffstat (limited to 'doc/examples.rst')
-rw-r--r--doc/examples.rst16
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/examples.rst b/doc/examples.rst
index cb89904..6338b5c 100644
--- a/doc/examples.rst
+++ b/doc/examples.rst
@@ -29,12 +29,6 @@ Examples.
This will start a subshell and log all input and output to a file.
This demonstrates the :meth:`~pexpect.spawn.interact` method of Pexpect.
-`fix_cvs_files.py <https://github.com/pexpect/pexpect/blob/master/examples/fix_cvs_files.py>`_
- This is for cleaning up binary files improperly added to CVS. This
- script scans the given path to find binary files; checks with CVS to
- see if the sticky options are set to -kb; finally if sticky options
- are not -kb then uses 'cvs admin' to set the -kb option.
-
`ftp.py <https://github.com/pexpect/pexpect/blob/master/examples/ftp.py>`_
This demonstrates an FTP "bookmark". This connects to an ftp site;
does a few ftp tasks; and then gives the user interactive control over
@@ -57,16 +51,6 @@ Examples.
backwards. It then gives the user iteractive control of Python. It's
pretty useless!
-`rippy.py <https://github.com/pexpect/pexpect/blob/master/examples/rippy.py>`_
- This is a wizard for mencoder. It greatly simplifies the process of
- ripping a DVD to Divx (mpeg4) format. It can transcode from any video
- file to another. It has options for resampling the audio stream;
- removing interlace artifacts, fitting to a target file size, etc.
- There are lots of options, but the process is simple and easy to use.
-
-`sshls.py <https://github.com/pexpect/pexpect/blob/master/examples/sshls.py>`_
- This lists a directory on a remote machine.
-
`ssh_tunnel.py <https://github.com/pexpect/pexpect/blob/master/examples/ssh_tunnel.py>`_
This starts an SSH tunnel to a remote machine. It monitors the
connection and restarts the tunnel if it goes down.