mirror of
https://github.com/cupcakearmy/memoir.git
synced 2024-12-22 08:06:27 +00:00
8 lines
234 B
Markdown
Executable File
8 lines
234 B
Markdown
Executable File
# See difference between files / directories
|
|
|
|
```bash
|
|
diff -ry dir1 dir2
|
|
```
|
|
|
|
The `-r` flag is to recurse into folders. The `-y` flag creates a side by side view, generally easier to read. `-q` Would only show what filenames changed.
|