Command Line Essentials: The Commands: Where Am I? What's Here?
Command Line Essentials: The Commands: Where Am I? What's Here?
Change Directory
pwd
ls -l
cd Videos/
pwd
cd ..
pwd
cd My\ Documents/
pwd
cd ../../..
ls -l
cd ~
cd ../..
cd
cd /c/Windows/System32/
pwd
cd
Echo...Echo
echo "Hello World"
echo $PATH
echo "The current path is $PATH"
Output to a File
pwd
echo "hello there" >> demo.txt
ls
cat demo.txt
echo "hello again" >> demo.txt
cat demo.txt
echo "HI" > demo.txt
cat demo.txt
clear
ls -al > listing.txt
cat listing.txt