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

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;

44 Cards in this Set

  • Front
  • Back
CD (chdir) and how it can be used to move “up”
move up one file cd..
move up multiple files cd ..\..\..\
CD (chdir) and how it can be used to move “down”
cd "directoty name"
cd folder1/folder2/folder3
What is the LARGEST binary number that can be represented by 1 Byte?
1
MD (mkdir)
to make a directory name (but not a file)
RD (rmdir)
RD (rmdir) to remove a directory
HOW do you remove a directory that contains items?
RD /S foldername
EDIT (EDIT.COM)
to create a file (but not a directory)

EDIT.COM is not normally installed in Windows 7. Use the redirect ( >) or (>>) command to create a file, as in DIR > newfile.txt
DEL (or ERASE)
to remove a file (but not a directory)
>
Redirect
“redirect” ( > )
to create a file with information, such as TREE /F /A > treelist.txt
The TYPE or the MORE command
In computing, more is a command to view (but not modify) the contents of a text file one screen at a time (terminal pager).
The value of “Ctrl-C” in command line
to STOP a command that is running in Command Line.
ALIAS (short name) if
In computing, aliasing describes a situation in which a data location in memory can be accessed through different symbolic names in the program. Thus, modifying the data through one name implicitly modifies the values associated with all aliased names, which may not be expected by the programmer. As a result, aliasing makes it particularly difficult to understand, analyze and optimize programs. Aliasing analyzers intend to make and compute useful information for understanding aliasing in programs.
The DIR command
The DIR command to see the contents of the current directory, and these important “switches” to modify DIR:
DIR /A
shows all files even hidden or system ones.
DIR /S
shows all files and subdirectories (use it to search for a file)
DIR /X
shows the alias names of any file/folder that does not follow the 8.3
up arrow in command line
repeats all commands in the buffer, one at a time;
F7 key in command line
shows all the commands in the buffer in a separate box
What is the best way to “clear the screen” in command line interface
type CLS
What is the best way to “close the screen” in command line interface.
type EXIT
What is the best way best to switch from the C drive (hard drive) to another partition, a DVD drive, or a flash drive, in command line interface. (NOTE: this also works in the Run line!)
type in D:
(the intended drive letter followed by the colon)
What is the purpose of |MORE for some commands?
the |MORE (pipe more) switch shows one screen of information, then pauses, instead of scrolling through. Many Windows 7 commands do not need this feature, as they automatically pause.
Does “help” work with all commands in the CLI?
HELP only works with certain commands. It does not work with many others, such as IPCONFIG. Use IPCONFIG /? instead.
how to use ? in a search (the question mark, ? , replaces ONLY ONE CHARACTER AT A TIME in a search).
Tool used to help

Ex: DIR 20??Calendar.pdf will find ONLY Calendar PDF files that start with 20 and have two characters after, such as 2012Calendar and 2013 Calendar.
how to locate, for example, all files that END with ECPI
DIR *ECPI.* (need .* so that any extension is found) , as opposed to all files that START with ECPI DIR ECPI*
as opposed to all files that CONTAIN ECPI anywhere in the name.... DIR *ECPI*
and how to find files that have ONLY FOUR characters after ECPI (total of 8 characters in their name, plus an extension) DIR ECPI????.*
ATTRIB +h +r
(hide, read-only)
ATTRIB +h -r
(hide, but it can be edited if you can find it.) Using just ATTRIB will show you the attributes of the files in the current directory.
Attrib Command
The attrib command is a Recovery Console command used to change file attributes for a file or folder
What are the two ways to change the color in command line?
1. Properties
2. Command line
A folder is known as _____________- in command line?
Directory
What is a child directory?
any folder listed under another folder
If you want a folder name with spaces in it what must you do?
Put Quotations "around it"
How can I find out about a command?
? or help (help only works for some commands)
If you spell something wrong in command line what error do you receive?
is not recognized as an external or internal command
what are the two ways to hide files?
Attributes +h

folder properties check hidden
What are the forbidden characters in file naming
/ \ : * ? " < > |
What characters make up an alias
must be less than 8 characters

if the name is greater than 8 characters the alias will take the first six letters minus any spaces, space 7 will have a tilda (~), space 8 has a numerical value representing the number of alias with the same first 6 numbers
Outlier
Piece of data that does not fit the norm (lies outside the data range)
Syntax
In computer science, the syntax of a computer language is the set of rules that defines the combinations of symbols that are considered to be a correctly structured document or fragment in that language.
Relative Path
this is relative to the DIR you are in
Absolute Path
this will move you to this location
how do you delete everything in a dir
rd /s
How do you have command line ask permission to delete a file
DEL /P