2025-03-14 21:59:59 -06:00
|
|
|
# chflags
|
|
|
|
|
|
|
|
|
|
> Change file or directory flags.
|
|
|
|
|
> More information: <https://keith.github.io/xcode-man-pages/chflags.1.html>.
|
|
|
|
|
|
|
|
|
|
- Set the `hidden` flag for a file:
|
|
|
|
|
|
2026-07-08 16:22:34 -06:00
|
|
|
`chflags hidden {{path/to/file}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Unset the `hidden` flag for a file:
|
|
|
|
|
|
2026-07-08 16:22:34 -06:00
|
|
|
`chflags nohidden {{path/to/file}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Recursively set the `uchg` flag for a directory:
|
|
|
|
|
|
2026-07-08 16:22:34 -06:00
|
|
|
`chflags -R uchg {{path/to/directory}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Recursively unset the `uchg` flag for a directory:
|
|
|
|
|
|
2026-07-08 16:22:34 -06:00
|
|
|
`chflags -R nouchg {{path/to/directory}}`
|