• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/3

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

3 Cards in this Set

  • Front
  • Back

&&

command1 && command2


  • In this example command2 will only run if command1 is successful (i.e. return code of 0 from the process)

tee

  • will save standard input to a file and send it to standard output.
  • can be used to save stdin into a file and send it to stdout

xargs

  • build and execute command
  • -a reads items from tile instead of standard input
  • -0 input items are terminated by a null character instead of by white spaces
  • -d input items are terminated by the specified character