Shortcut | Description |
---|---|
ranger |
Start Ranger |
Q |
Quit Ranger |
R |
Reload current directory |
? |
Ranger Manpages / Shortcuts |
This file contains hidden or 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
""" | |
@author: Brandon Harmon | |
@date : 9 April, 2014 | |
@description: | |
Pass this program the location of the places.sqlite file for firefox | |
(for me it is ~/.mozilla/firefox/mwad0hks.default/places.sqlite) | |
It will output a csv file where you designate in the 2nd param | |
""" | |
import sqlite3 as lite |
This file contains hidden or 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
# The following should be in `/etc/sudoers`. To edit `/etc/suoders` use the command `sudo visudo` in a terminal. | |
# *Do NOT attempt to modify the file directly* | |
Defaults env_reset | |
Defaults mail_badpass | |
Defaults env_keep+="http_proxy ftp_proxy all_proxy https_proxy no_proxy" # Add this line | |
... |