Show More
@@ -6,7 +6,7 b' Requires Python 2.3 or newer.' | |||||
6 |
|
6 | |||
7 | This file contains all the classes and helper functions specific to IPython. |
|
7 | This file contains all the classes and helper functions specific to IPython. | |
8 |
|
8 | |||
9 |
$Id: iplib.py 12 |
|
9 | $Id: iplib.py 1277 2006-05-02 10:31:55Z walter.doerwald $ | |
10 | """ |
|
10 | """ | |
11 |
|
11 | |||
12 | #***************************************************************************** |
|
12 | #***************************************************************************** | |
@@ -570,7 +570,7 b' class InteractiveShell(object,Magic):' | |||||
570 |
|
570 | |||
571 | # Make some aliases automatically |
|
571 | # Make some aliases automatically | |
572 | # Prepare list of shell aliases to auto-define |
|
572 | # Prepare list of shell aliases to auto-define | |
573 |
if os.name == 'posix': |
|
573 | if os.name == 'posix': | |
574 | auto_alias = ('mkdir mkdir', 'rmdir rmdir', |
|
574 | auto_alias = ('mkdir mkdir', 'rmdir rmdir', | |
575 | 'mv mv -i','rm rm -i','cp cp -i', |
|
575 | 'mv mv -i','rm rm -i','cp cp -i', | |
576 | 'cat cat','less less','clear clear', |
|
576 | 'cat cat','less less','clear clear', | |
@@ -582,7 +582,7 b' class InteractiveShell(object,Magic):' | |||||
582 | 'lc ls -F -o --color', |
|
582 | 'lc ls -F -o --color', | |
583 | # ls normal files only |
|
583 | # ls normal files only | |
584 | 'lf ls -F -o --color %l | grep ^-', |
|
584 | 'lf ls -F -o --color %l | grep ^-', | |
585 |
# ls symbolic links |
|
585 | # ls symbolic links | |
586 | 'lk ls -F -o --color %l | grep ^l', |
|
586 | 'lk ls -F -o --color %l | grep ^l', | |
587 | # directories or links to directories, |
|
587 | # directories or links to directories, | |
588 | 'ldir ls -F -o --color %l | grep /$', |
|
588 | 'ldir ls -F -o --color %l | grep /$', |
General Comments 0
You need to be logged in to leave comments.
Login now