Check out the new web development bootcamp! learn more

It has already been one month since I first created this blog! I am trying to improve it. Do you have any ideas? leave a feedback

home > learn bash

Web Dev Bootcamp ∙ Learn Bash

Hieu Nguyen · May 06, 2020 · 1 min read

webdevbashcourse

0

0 leave some love!

What is Bash?

Bash is a command terminal where you can type in some command and your operating system will execute the command

Here is what a typical bash looks like bash

Common Bash Commands

ls

List all directories and files in a directory

ls

cd

Changing directories

cd myDirectoy
cd directory1/directory2/...

you can also navigate into multiple nested directories by typing a forward slash followed by the directory name

you can also go back one directory by typing cd ..

mkdir

Making new directories

mkdir myNewDirectory

touch

creating files

touch index.js

rm

removing files and directories

rm index.js
rm myDirectory

Note: you can only use rm myDirectory if the directory is empty.

To delete the directory including all files and sub directories inside of it use rm -rf myDirectory

More Information

there are a lot of commands, but these are the ones that you will probably used the most often

here is a good resource to learn more

What’s Next?

Learn git


Hieu Nguyen - Founder of devsurvival.com. I am also a video gamer, a full stack developer, and an anime lover. I'm also an advocate of teaching others how to code.
Archive