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

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;

28 Cards in this Set

  • Front
  • Back

pwd

print working directory

hostname

my computer's network name

cd

change directory

ls

list directory

rmdir

remove directory

popd

pop directory

cp

copy a file or a directory

mv

move a file or a directory

less

page through a file

cat

print the whole file

xargs

execute arguments

find

find files

grep

find things inside files

man

read a manual page

apropos

find what man page is appropriate

env

look at your environment

echo

print some arguments

export

export/set a new environment variable

exit

exit the shell

sudo

DANGER! become super user root DANGER!

chmod

change permission modifiers

chown

change ownership

asterisk (*)

matches anything in the wildcard like *.txt

find

find STARTDIR -name WILDCARD -print

$|$

The | takes the output from the command on the left, and "pipes" it to the command on the right.

$ < $

The < will take and send the input from the file on the right to the program on the left.

$ > $

The > takes the output of the command on the left, then writes it to the file on the right.

$ >> $

The >> takes the output of the command on the left, then appends it to the file on the right.