Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion resources/cheatsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ List the contents of the directory:
ls
```

Shows the differences between the index file and the current file. Git status displays the current state of the working directory.
```
git status
```

Redirect Output:
to overwrite an existing file or a create a new file with the given file name:
``
Expand All @@ -114,7 +119,7 @@ echo "send output to file.txt" > file.txt
```
echo "append output to file.txt >> file.txt
```

## Wildcard / Kleene star

The wildcard character in bash `*` works by expanding in place to separate arguments that match whatever pattern you're writing.
Expand Down