Skip to content
Snippets Groups Projects
Verified Commit 7b245be9 authored by ck85nori's avatar ck85nori :railway_track:
Browse files

adds bash basics section

parent a57f5d54
No related branches found
No related tags found
No related merge requests found
......@@ -363,6 +363,23 @@
- do not type brackets they just mean argument optional
</section>
<section id="cli-bash-basics" data-markdown>
## command line
### bash basics
```bash
pwd # print working directory
ls [dir] # list directory contents
echo msg # print message
cd [dir] # change directory
mkdir dir # create directory
rmdir dir # remove directory
rm file # remove file
cp src dest # copy from source to destination
mv src dest # move / rename
```
</section>
<section id="cli-git" data-markdown>
## command line
### git syntax
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment