Key | Action |
---|---|
Ctrl + a |
Jump to the start of the line |
Ctrl + b |
Move back a char |
Ctrl + c |
Terminate the command |
Ctrl + d |
Delete from under the cursor |
Ctrl + e |
Jump to the end of the line |
Ctrl + f |
Move forward a char |
Ctrl + k |
Delete to EOL |
Ctrl + l |
Clear the screen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
import os | |
import os.path as p | |
import argparse | |
import re | |
import time | |
try: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
This apparently reproduces issue described at | |
https://github.com/kennethreitz/requests/issues/2887 | |
Versions: | |
- Requests version: 2.9.1 | |
- Bottle version: 0.12.9 | |
- Waitress version: 0.8.10 | |
""" |