Created
August 18, 2012 16:17
-
-
Save jasonswett/3388090 to your computer and use it in GitHub Desktop.
test cases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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