2022-08-01 19:25:25 +01:00
|
|
|
# chflags
|
|
|
|
|
|
|
|
> Altera flags de arquivo ou diretório.
|
2024-01-31 10:20:27 +00:00
|
|
|
> Mais informações: <https://keith.github.io/xcode-man-pages/chflags.1.html>.
|
2022-08-01 19:25:25 +01:00
|
|
|
|
|
|
|
- Define a flag `hidden` para um arquivo:
|
|
|
|
|
|
|
|
`chflags {{hidden}} {{caminho/para/arquivo}}`
|
|
|
|
|
|
|
|
- Remove a flag `hidden` de um arquivo:
|
|
|
|
|
|
|
|
`chflags {{nohidden}} {{caminho/para/arquivo}}`
|
|
|
|
|
|
|
|
- Define recursivamente a flag `uchg` para um diretório:
|
|
|
|
|
|
|
|
`chflags -R {{uchg}} {{caminho/para/diretório}}`
|
|
|
|
|
|
|
|
- Remove recursivamente a flag `uchg` de um diretório:
|
|
|
|
|
|
|
|
`chflags -R {{nouchg}} {{caminho/para/diretório}}`
|