Skip to content

Instantly share code, notes, and snippets.

View stith's full-sized avatar

Anna Stith stith

View GitHub Profile
@stith
stith / dice.txt
Created January 4, 2010 14:27
Cleverbot conversations
User: Will you roll a dice, please?
Cleverbot: I don't understand your request.
User: Roll a dice.
Cleverbot: Four.
User: Roll a dice.
@stith
stith / grep-find-files-containing-text.sh
Created November 19, 2009 02:54
Random command line snippets
grep -lir "some text" *
// -l outputs only names of files containing text instead of the line
// -i ignores case
// -r recursive, go into subdirectories