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

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;

36 Cards in this Set

  • Front
  • Back
pwd
Print working directory
hostname
Computer Network's Name
mkdir
Make directory
cd
change directory
ls
list directories
rmdir
remove directory
pushd
push directory
popd
pop directory
cp
copy file or directory
robocopy
robust copy
mv
move a file or directory, also can rename them
more
page through a file
type
print the whole file
forfiles
run a command on lots of files
dir -r
find files
select-string
find things inside files
help
read manual page
helpctr
find what man page is appropriate
echo
print some arguments
set
export/set a new environment
exit
exit the shell
runas
DANGER! become a super root user DANGER!
attrib
change permission modifiers
iCALCS
change ownership
New-Item
creates a new file
| (pipe)
takes output fr command on the left and pipes it to the command on the right
>
takes the output of the cmd on the left, then WRITES it to the file on the right
>>
takes the output of the cmd on the left, then APPENDS it to the file on the right
*
matches anything in a wildcard like *.txt
find STARTDIR -name WILDCARD -print
Unix find format
dir -r -filter WILDCARD
Windows find format
Unix Find Format
find STARTDIR -name WILDCARD -print
Windows Find Format
dir -r -filter WILDCARD
man
help manual for Unix
Unix Finding Help
apropos COMMAND
Unix Find Content Command (similar to select-string)
grep