brew-bundle, caffeinate, open and tmutil: add German translation (#5178)

* brew-bundle, caffeinate, open and tmutil: add German translation

* Update pages.de/osx/brew-bundle.md

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>

* Update pages.de/osx/caffeinate.md

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>

* Update pages.de/osx/tmutil.md

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>

* Update pages.de/osx/tmutil.md

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>

* Update pages.de/osx/tmutil.md

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>

* Update pages.de/osx/tmutil.md

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>

Co-authored-by: Kargins <10598483+GETandSELECT@users.noreply.github.com>
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
This commit is contained in:
Kargins
2021-01-24 17:23:41 +01:00
committed by GitHub
parent 204ce531a7
commit 50cff8c9e6
4 changed files with 106 additions and 0 deletions

27
pages.de/osx/open.md Normal file
View File

@@ -0,0 +1,27 @@
# open
> Öffnet Dateien, Verzeichnisse und Anwendungen.
- Öffnet eine Datei mit der zugehörigen Anwendung:
`open {{file.ext}}`
- Ausführen einer grafischen macOS-Anwendung:
`open -a {{Application}}`
- Ausführen einer grafischen macOS-Anwendung basierend auf der Bundle-Kennung (siehe `osascript` für eine einfache Möglichkeit, diese zu identifizieren):
`open -b {{com.domain.application}}`
- Öffnen des aktuellen Verzeichnis im Finder:
`open .`
- Zeigen Sie eine Datei im Finder an:
`open -R {{path/to/file}}`
- Alle Dateien einer bestimmten Erweiterung im aktuellen Verzeichnis mit der zugehörigen Anwendung öffnen:
`open {{*.ext}}`