mirror of
https://github.com/cupcakearmy/memoir.git
synced 2024-12-23 00:26:28 +00:00
13 lines
258 B
Plaintext
13 lines
258 B
Plaintext
|
---
|
||
|
tags:
|
||
|
- diff
|
||
|
---
|
||
|
|
||
|
# 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.
|