Skip to content

Instantly share code, notes, and snippets.

@jasonswett
Created August 18, 2012 16:17
Show Gist options
  • Save jasonswett/3388090 to your computer and use it in GitHub Desktop.
Save jasonswett/3388090 to your computer and use it in GitHub Desktop.
test cases
# single tag
find recipe
1 chicken alfredo
2 chicken pot pie
3 meatloaf
4 pasta primavera
5 spaghetti
# recipe AND chicken
find recipe chicken
1 chicken alfredo
2 chicken pot pie
# recipe AND vegetarian
find recipe vegetarian
1 pasta primavera
# recipe AND (chicken OR beef)
find recipe chicken|beef
1 chicken alfredo
2 chicken pot pie
3 meatloaf
4 spaghetti
# single tag
find to-do
1 to do one time
2 to do recurring
# to-do AND one-time
find to-do one-time
1 to do one time
# show filenames
# imagine "find --show-file recipe chicken | cat > chicken-recipes.txt"!
find --show-file recipe chicken
recipe/chicken-alfredo.note
recipe/chicken-pot-pie.note
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment