Describe the 'symlink' command better

This commit is contained in:
Thomas Grenfell Smith
2011-06-23 16:04:32 -04:00
parent 4a1174811c
commit 7e5f5c72e1
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -81,9 +81,9 @@ Disable pythonbrew::
pythonbrew off
Create/Remove a symbolic link to python::
Create/Remove a symbolic link to python (in a directory on your $PATH)::
pythonbrew symlink # Create a symbolic link, like "py2.5.5"
pythonbrew symlink # Create a symbolic link, like "py2.5.5", for each installed version
pythonbrew symlink -p 2.5.5
pythonbrew symlink pip # Create a symbolic link to the specified script in bin directory
pythonbrew symlink -r # Remove a symbolic link
+1 -1
View File
@@ -7,7 +7,7 @@ from pythonbrew.log import logger
class SymlinkCommand(Command):
name = "symlink"
usage = "%prog [OPTIONS] [SCRIPT]"
summary = "Create/Remove a symbolic link"
summary = "Create/Remove a symbolic link on your $PATH"
def __init__(self):
super(SymlinkCommand, self).__init__()