1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 19:05:59 +02:00

dot_clean: add page (#5144)

This commit is contained in:
Gingka Akiyama 2021-01-14 20:26:31 -05:00 committed by GitHub
parent 357914393d
commit 2ef9352001
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

28
pages/osx/dot_clean.md Normal file
View file

@ -0,0 +1,28 @@
# dot_clean
> Merge ._* files with corresponding native files.
> More information: <https://ss64.com/osx/dot_clean.html>.
- Merge all `._*` files recursively:
`dot_clean {{path/to/directory}}`
- Don't recursively merge all `._*` in a directory (flat merge):
`dot_clean -f {{path/to/directory}}`
- Merge and delete all `._*` files:
`dot_clean -m {{path/to/directory}}`
- Only delete `._*` files if there's a matching native file:
`dot_clean -n {{path/to/directory}}`
- Follow symlinks:
`dot_clean -s {{path/to/directory}}`
- Print verbose output:
`dot_clean -v {{path/to/directory}}`