![]() ESN 75794-081229-675072-46 |
|
Document Name: Power Text Pasting with JumpCut and pbcopy Document Description: Power Text Pasting with JumpCut and pbcopy2008/12/29 I saw a Twitter Tweet recommending http://www.smileonmymac.com/TextExpander/. That's a nice little OS X app that "saves you countless keystrokes with customized abbreviations for your frequently-used text strings and images." I tried the free demo and it certainly does that. Nice piece of software, just $29.95. However, I don't use that. While perhaps not quite as convenient or powerful, I find most of my needs are met by JumpCut, a free utility that lets you select from up to 99 cut and paste buffers. That's great by itself, but I soon realized that there are certain pastes I want frequently. The OS X "pbcopy" command lets me load or reload JumpCut with specific text any time I want. I simply created a "jc" directory and in it I put text files containing text that I might want to paste during the day. A "loadjc" command is a simple shell script that uses "pbcopy" to load these snippets into JumpCut. I use alphabetic file names: a, b, c etc. Put your most frequently used text in later numbers as these will be the first in JumpCut. cd ~/jc for i in * do cat $i | pbcopy done I can run that at startup to pre-load JumpCut or I can run it at any time during the day to reload it. This is a simple and effective way for me to keep data ready to paste as needed. Author: Anthony Lawrence - Contact Author Publisher: Anthony Lawrence Licensee Name: Anthony Lawrence Reference URL: http://aplawrence.com/MacOSX/power-text.html Copyright: All Rights Reserved Registration Date: 12/29/2008 11:27:16 PM UTC Views: 335 |
