mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 07:24:55 +02:00

* 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>
27 lines
657 B
Markdown
27 lines
657 B
Markdown
# 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}}`
|