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

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;

23 Cards in this Set

  • Front
  • Back

pwd

print working directory

hostne

my computers network name

mkdir

make directory

cd

change directory

ls

list directory

rmdir

remove directory

pushd

push directory

popd

pop directory

cp

copy a file or directory

mv

move a file or directory

less

page threw a file

cat

print the whole file

xargs

execute argument

find

find files

grep

find things inside files

man

read a manual page

apropos

find which manual page is appropriate

env

look at your environment

echo

Print some arguments



exit

exit the shell

sudo

DANGER become a super user DANGER

export

export/set new environment variable

mkdir -p

mkdir -p command you can create sub-directories of a directory. It will create parent directory first, if it doesn't exist. But if it already exists, then it will not print an error message and will move further to create sub-directories.