commands Flashcards
(59 cards)
/
separation of directories
\
topmost directories
pwd
present work directory(where you currently in)
cd
change directories
cd ..
moving up in hierarchy
ls
whats inside in this current directory(if its blue it means directory not a file)
-l
long output(basically more details of those files)
-l ..
upper directory in -l
ls -a
all files
ls -al
all long files
mkdir
make directory
tab(the button)
used for autocomplete
rmdir
remove directory
arrows(on the keyboard)
used for scroll thru the previous commands
(letter)*
removes everything what starts with the letter
touch
creates an empty file
nanao
text editor
^(letter)
^symbol means
ctrl when you see for example ^k that means ctrl+k
man (the command)
manual guide for the command
cat (the file name)
prints off the content of the file on the screen
head (the file)
shows the first 10 lines of the file
tail (the file)
shows the last 10 lines of the file
cp (the file name that you wanna copy to somewhere) (the new place for the file)
copy
mv
move