From 7f63c6eee9bc2645e962174abc59999a2985da7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20W=C3=BCnsche?= <42999314+thomaswuensche@users.noreply.github.com> Date: Sat, 16 Jan 2021 15:04:01 +0100 Subject: [PATCH] defaults: add find example (#5147) --- pages/osx/defaults.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pages/osx/defaults.md b/pages/osx/defaults.md index 9a359da9e3..4d75c3ac8a 100644 --- a/pages/osx/defaults.md +++ b/pages/osx/defaults.md @@ -1,6 +1,7 @@ # defaults > Read and write macOS user configuration for applications. +> More information: . - 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}}`