Legend of Korra Book 1 OST

Jun. 14th, 2013 12:46 pm
inkstone: Legend of Korra's Korra firebending (fire dance)
[personal profile] inkstone posting in [community profile] white_lotus
Legend of Korra has an official soundtrack coming out on July 16! The WSJ has a preview of one of the tracks.

On their Facebook page, the Track Team says that if sales are good, we may finally get a soundtrack for Avatar: The Last Airbender.

Selling!

Jun. 9th, 2013 04:40 pm
valor: (Default)
[personal profile] valor posting in [community profile] fire_emblem
Selling Fire Emblem, Final Fantasy, Code Geass, Kingdom Hearts, and Black Butler doujinshi, games, and accessories here. Listings have just been updated, including a few rare/collector items ♥

finding a string in a directory

Jun. 7th, 2013 03:02 pm
jadelennox: Demonic Tutor, Jadelennox: my Magic card (demonic tutor)
[personal profile] jadelennox posting in [community profile] command_liners
Little trick I do all the time when I'm looking for a string in a source tree:

find . -type f -exec egrep -H "string I'm seeking" {} \;

The things that vary:

find 
     base command, doesn't change
. 
     the top directory you're seeking in.  Could put a relative or absolute path here.
-type f 
     Narrowing down the kind of files you're seeking, in this case to regular files. 
     You could narrow it down in other ways, e.g. -name "*.c"
-exec egrep -H "string I'm seeking" {} \;
     the grep command in question. 
     The only thing I have a very here is the egrep switch (and the string).
     -H lists filename and the match
     -l just lists the filename; less informative but cleaner.
     {} \; is necessary syntax for the exec argument to find.

"there's a way to navigate tomorrow unscathed"


this is a personal journal that I need to get back into the habit of using on a regular basis because I lose everything I don't have in writing