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
Process: Garmin VIRB Edit [1832] | |
Path: /Applications/Garmin VIRB Edit.app/Contents/MacOS/Garmin VIRB Edit | |
Identifier: com.garmin.VIRBEdit | |
Version: 2.9.1 (2910) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [170] | |
Responsible: Garmin VIRB Edit [1832] | |
User ID: 501 | |
Date/Time: 2015-04-14 12:55:10.406 -0400 |
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/sh | |
# From http://stackoverflow.com/questions/15585441/batch-renaming-multiple-files-with-different-extensions-linux-script | |
# first argument - basename of files to be moved | |
# second arguments - basename of destination files | |
if [ $# -ne 2 ]; then | |
echo "Two arguments required." | |
exit; | |
fi |
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
Process: Garmin VIRB Edit [31839] | |
Path: /Applications/Garmin VIRB Edit.app/Contents/MacOS/Garmin VIRB Edit | |
Identifier: com.garmin.VIRBEdit | |
Version: 2.8.0 (2.8.0) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [170] | |
Responsible: Garmin VIRB Edit [31839] | |
User ID: 501 | |
Date/Time: 2015-01-06 19:36:13.051 -0500 |
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
#!/usr/bin/env python | |
# Take an IBM Sametime HTML log file, determine the date, and create | |
# an RFC-compliant email message from it, for importation into an MUA | |
# | |
# Usage: sametimetoeml.py inputfile.html | |
# Where inputfile.html is a Sametime log located in a dated folder | |
# (See readme for more useful suggestions.) | |
# | |
# Written for Python 2.6 |
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
#!/usr/bin/env python3 | |
""" Converts a directory full of .eml files to a single Unix "mbox" file. | |
This is similar to http://www.cosmicsoft.net/emlxconvert.html | |
Accepts as input either an individual .eml file or a directory containing one | |
or more .eml files. | |
Usage: | |
$ ./emlToMbox.py inputdir/ output.mbox |
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
#!/usr/bin/env python | |
"""Convert Adium logs to RFC822-compliant '.eml' files that can be imported | |
into a mail program, uploaded to Gmail, etc. | |
Usage: | |
$ ./adiumToEml.py logfile [outputdir] | |
In most cases, you would probably want to call this from a script, e.g. | |
with `find` and `xargs` in order to run it on a bunch of logfiles. |
NewerOlder