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

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;

13 Cards in this Set

  • Front
  • Back
what command gets you back to the home directory
cd
What does the following command do:
cd ../../
would take you back 2 directories
what would the following command do:
cd hope
would go into the hope directory if it exists
what would the following command do:
cd ..
Used to go back one directory on the majority of all Unix shells. It is important that the space be between the cd and the ..
what would the following command do:
cd -
When in a Korn shell to get back one directory used to go back one directory
what would the following command do:
ls -l
this command would list each of the files in the current directory and the files permissions, the size of the file, date of the last modification, and the file name or directory.
what would the following command do:
ls ~
list the contents of your home directory
what unix command will clear the screen
clear
Note: often cls will also work
what command would you use to display the name of the current working directory
pwd
What does bash stand for
Bourne again shell
What does the following code do:
/Applications/XAMPP
It says to go to the root directory on the hard drive, then to the Application folder, and then to the XAMPP folder.

note: the leading slash indicates the path starts at the root of the file system, which in our case means the root of the hard drive. When it is absent, it means that the file path is relative to your current working directory
when you're using the shell, you are issuing commands from within a particular directory, called the ___.
working directory
What command will show you the working directory
PWD