- 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
![]()
6 Cards in this Set
- Front
- Back
|
ctrl-d
|
exit shell (logout)
|
|
ctrl-h
|
Backspace on command-line
|
|
ctrl-u
|
erase current command-line
|
|
edit from less or more view
|
v (will change to vi editor view)
|
|
Command to "suspend" a process to background.
|
ctrl+z (does not kill program)
|
|
search for a file created within a number of days.
|
find ./ -ctime 5 -print
find (current directory) (create time in days) (print) |