• 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/8

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;

8 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)

pwd

Print Work Directory

Shows where you are

hostname

Name of computer

mkdir

Make Directory

cd

Change directory

ls

list (what's in directory)

rmdir

Remove Directory

pushd

Push Directory: takes your current directory and "pushes" it into a list for later, then it changes to another directory. It's like saying, "Save where I am, then go here."

$ cd temp


$ mkdir -p i/like/icecream


$ pushd i/like/icecream ~/temp/i/like/icecream ~/temp


$ popd ~/temp


$ pwd ~/temp


$ pushd i/like ~/temp/i/like ~/temp

popd

Pop Directory: takes the last directory you pushed and "pops" it off, taking you back there.