mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 21:46:02 +02:00
defaults: add find example (#5147)
This commit is contained in:
parent
d1423acaa3
commit
7f63c6eee9
1 changed files with 5 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
# defaults
|
||||
|
||||
> Read and write macOS user configuration for applications.
|
||||
> More information: <https://ss64.com/osx/defaults.html>.
|
||||
|
||||
- Read system defaults for an application option:
|
||||
|
||||
|
@ -10,6 +11,10 @@
|
|||
|
||||
`defaults read -app {{application}} {{option}}`
|
||||
|
||||
- Search for a keyword in domain names, keys, and values:
|
||||
|
||||
`defaults find {{keyword}}`
|
||||
|
||||
- Write the default value of an application option:
|
||||
|
||||
`defaults write {{application}} {{option}} {{-type}} {{value}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue