- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
3 Cards in this Set
- Front
- Back
|
Grep Command
|
grep [options] PATTERN [FILE...]
find . -type f -print | xargs grep itna find every file that contains itna |
|
xargs command
|
xargs - construct argument lists and invoke utility
find . -name "*.foo" | xargs grep bar The above is equivalent to: grep bar `find . -name "*.foo"` |
|
find command
|
find [path...] [expression]
find /usr -name *stat Find every file under the directory /usr ending in ".stat". |