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
#!/bin/bash | |
# | |
# matrix: matrix-ish display for Bash terminal | |
# Author: Brett Terpstra 2012 <http://brettterpstra.com> | |
# Contributors: Lauri Ranta and Carl <http://blog.carlsensei.com/> | |
# | |
# A morning project. Could have been better, but I'm learning when to stop. | |
### Customization: | |
blue="\033[0;34m" |
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
cat <<EOF | base64 -d | zcat | bash | |
H4sIAAAAAAAAA81WW1fbOBB+96+YdcKadNc2KWUvpKFNwbScculJUs7uQo+PsJVExZFcSQmwLf99 | |
R/IlTgvt6z5Zlma+Gc3l02w6uWRcT8C75FGWUg5DxqcwomSeUaVgX/hnORwzvrjFTb3IL7nnHB2O | |
+iApScGX4KfgeaASyXIdJ4JryrWC58+96OzQgy9fYNdp/RReMR5eETVznFYLRhrhISMLnswgEfM5 | |
4Sls3jA9EwsNekahBaRYTCQidpzWwV/nb+PD4eAkioeDcdTf+QPeDc/GZ6fxKBrHr83+wfDoPOp3 | |
4fztwfZBfBgNxu+HUXwcnUfH/e7TeAssxmiM6vH+YP+NkbVbg9Hfp/v4UzsJQVg4F1MTkhgjNI1V | |
GZJEiDxAmY3S8Q28Ejzgng9snkuxpCBFlmG4VC64YkvKEWQXZlrnajcMRZYGkqYp0wEChjK0WTAW | |
Q2PABDPU27Pf/twJ0c5jd/YR/9OCIRBMhITKVzDOwlykoAXMhLgGxhHl0Qj5kFOJAHivhMKmyDUT | |
nGSd6obrwfuRdBXXR+VMLRyiuym9WkyneGUsFXpLE9j7fvjjzNRjkIkpPN37uYtKfPlFCal7QJOZ | |
cFqKavBvHUdIhrAki4mcqv6m237pdpzm2oiDd1aKVbW469VdsfEJPHDbn9eQLl5+uHetruMoLFv0 |
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
#!/bin/bash | |
# Locate the history file in your profile, and copy it to the same folder as this script. | |
# On Mac: ~/Library/Application\ Support/Google/Chrome/Default/History | |
# On Windows: C:\Users\YOUR USER NAME\AppData\Local\Google\Chrome\User Data\Default\History | |
sqlite3 History <<! | |
.headers on | |
.mode csv | |
.output out.csv |