DEV Community

SFD
SFD

Posted on

Day #2 - Its starting to make sense

15 February

Second day starts with practice, Odin told me how to move through derectories, how to turn on WSL inside of VSCode and how to download something inside of WSL.

Aftermath: I've learnt how to move through directories, learned how to download files from internet using wget and much much more. Installed git and set it up.

Short summary:
wget (direct link) - downloads said file/zip
pwd - print working directory, shows current position
ls - shows directory contents
cd - changes directory, moving through it
cd .. - moves one directory
unzip - self explanatory
clear (-x) - clears terminal if its too "noisy"
(command) --help - general info
man (command) - general info
mkdir (name) - make directory
rm (name) - removes file from directory, doesnt delete directories
rm -r (name) - deletes directories aswell as its contents
mv (directory/1st arg) (directory/2nd arg) - moves or renames txt file
cp (directory/1st arg) (diretory/2nd arg) - copies said file
(action) -i - promts confirmation before action

Aprox time spent: 5 hours

Top comments (0)