pwd
print working direcdtory
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
mv
move a file or directory
less
page through a file
cat
print the whole file
xargs
execute arguments
find
find files
grep
find things insdie a file
man
read a manual page
apropos
find what man page is approproate
env
look at your enviroment
echo
print some arguments
exit
exit the shell
sudo
DANGER! become super user root DANGER!
chmod
change permision modifiers
chown
change ownership
|
The | takes the output from the command on the left, and “pipes” it to the command on the right.