Skip to content

Commit 6997d65

Browse files
authored
Merge branch 'main' into aws-ecs/add-page
2 parents e63cbd4 + 68294ee commit 6997d65

2 files changed

Lines changed: 29 additions & 0 deletions

File tree

pages/common/docker-compose.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# docker compose
22

33
> Run and manage multi container Docker applications.
4+
> Some subcommands such as `up`, `down`, `logs`, `stop` have their own usage documentation.
45
> More information: <https://docs.docker.com/reference/cli/docker/compose/>.
56
67
- List all running containers:

pages/linux/duff.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# duff
2+
3+
> Duplicate file finder.
4+
> More information: <https://github.com/elmindreda/duff>.
5+
6+
- Find duplicate files recursively:
7+
8+
`duff -r {{path/to/directory}}`
9+
10+
- List all but one file from each cluster of duplicates:
11+
12+
`duff -er {{path/to/directory}}`
13+
14+
- List unique files:
15+
16+
`duff -ur {{path/to/directory}}`
17+
18+
- Use SHA-256 instead of SHA-1:
19+
20+
`duff -d sha256 {{path/to/directory}}`
21+
22+
- Compare files byte by byte instead of using digests:
23+
24+
`duff -t {{path/to/directory}}`
25+
26+
- Include hidden files and directories when searching recursively:
27+
28+
`duff -ar {{path/to/directory}}`

0 commit comments

Comments
 (0)