Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions resources/cheatsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@ Delete everything in a directory with confirmation:
```
rm -iR directory
```
Move a file or Directory:
```
mv <directory name> <new directory name>
mv <file name> <new file name>
```
Comment on lines +37 to +41
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this could be clarified a little.

What are the two things that the mv command can do? how could you make that more clear here?

3 changes: 2 additions & 1 deletion resources/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ shell
terminal
a program that makes shell visible for us and allows for interactions with it


standard input (stdin)
default device for input from user
```