[moneydance] Moneydance 2008 final, and related news

Scott Zahn scott at zahna.com
Mon Mar 31 12:21:15 EST 2008


On Mon, March 31, 2008 12:13, rader at hep.wisc.edu wrote:
>
>  > tar -cf - *.md|pgp  -cf >data.pgp
>
> xargs is good for this kinda thing...
>
>  find . -name '*.md' -print | xargs tar -cf - | pgp -cf > data.pgp
>

or he could keep the file globbing and write his command like this:

tar -cf - -- *.md | pgp  -cf > data.pgp

The double dash specifies the end of command line flags.

Of course, the dash at the beginning of the filename seems a bit ugly to me. 
Maybe a tilde could be used rather than a dash?  That's sort of a defacto-ish
"standard" (not really, but it's used more than any other character).


More information about the moneydance-info mailing list