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
cattail() { | |
if [ ! $1 ]; then | |
echo "usage: cattail 'string' file" | |
else | |
grep "$1" $2 | |
tail -f -n 0 $2 |grep "$1" | |
fi | |
} | |
alias ct=cattail |
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
property applicationsFolder : "/Applications" | |
property applicationName : "OmniFocus" | |
property promptBeforeLaunch : false | |
(* | |
This script lets you quickly select a version of an application as the primary one by renaming the "blessed" version to [Application name].app and other versions to [Application name]-[version].app. | |
What it does… | |
- Prompts you to select which version to 'bless' | |
- Quits app if running |
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
property applicationsFolder : "/Applications2" | |
property applicationName : "OmniFocus" | |
property versionedApplicationName : "OmniFocus 1" -- the version to restore | |
property promptBeforeLaunch : false | |
(* | |
This script lets you quickly select a version of an application as the primary one by renaming the "blessed" version to [Application name].app and other versions to [Application name]-[version].app. | |
What it does… | |
- Identifies which copy of an app matches the naming scheme of versionedApplicationName |