Windows cmd/powershell Basic Commands Flashcards
Nuts and bolts of powershell
pwd
Print Working Directory
hostname
My computer’s 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
robocopy
Robust copy
mv
Move a file or directory
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 a manual page
helpctr
Find what man page is appropriate
echo
Print some arguments
set
Export/set a new environment variable
exit
Exit the shell
runas
DANGER! Become super user root DANGER!
What command does the following?
Print Working Directory
pwd
What command does the following?
My computer’s network name
hostname
What command does the following?
Make directory
mkdir
What command does the following?
Change directory
cd
What command does the following?
list directory
ls
What command does the following?
Remove directory
rmdir
What command does the following?
push directory
pushd
What command does the following?
Pop directory
popd
What command does the following?
Copy a file or directory
cp
What command does the following?
Robust copy
robocopy
What command does the following?
Move a file or directory
mv
What command does the following?
Page through a file
more
What command does the following?
Print the whole file
type
What command does the following?
Run a command on lots of files
forfiles
What command does the following?
Find files
dir -r
What command does the following?
find things inside files
select-string
What command does the following?
Read a manual page
help
What command does the following?
Find what man page is appropriate
helpctr
What command does the following?
Print some arguments
echo
What command does the following?
Export/set a new environment variable
set
What command does the following?
Exit the shell
exit
What command does the following?
DANGER! Become super user root DANGER!
runas