#Mac OS X
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
| # ls archives (inspired by `extract`) | |
| lsz() { | |
| if [ $# -ne 1 ] | |
| then | |
| echo "lsz filename.[tar,tgz,gz,zip,etc]" | |
| return 1 | |
| fi | |
| if [ -f $1 ] ; then | |
| case $1 in | |
| *.tar.bz2|*.tar.gz|*.tar|*.tbz2|*.tgz) tar tvf $1;; |
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
| #!/bin/bash | |
| # Uses Day One cli [http://dayoneapp.com/tools/cli-man] and sqlite3 | |
| # Expects extract from iPhone backup made by JuicePhone [http://www.addpod.com/juicephone], folder with a device name should be passed as an argument | |
| [ -z "$1" ] && echo "$0: Usage: $0 Device-Name-Exctracted-Folder" && exit 0 | |
| [ ! -d "$1" ] && echo "$0: $1 is not a directory" && exit 0 | |
| [ ! -e "$1/Application Data/Raconteur/Documents/Entries.sqlite" ] && echo "$0: $1 doesn't contain Racounter app extract." && exit 0 | |
| RT="$1" |
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
| (* | |
| http://veritrope.com | |
| EVERNOTE TO DEVONTHINK EXPORTER | |
| VERSION 1.63 | |
| April 12, 2012 | |
| // TERMS OF USE: | |
| This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. | |
| To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. |
NewerOlder