Ich versuche, eine App im Hintergrund vom Terminal aus zu öffnen, indem ich die Flags -g
oder --background
so verwende
open -g -a Franz
Leider öffnet sich die App nicht im Hintergrund. Ich habe auch die j
Flagge ausprobiert , die laut App die App verbergen soll:
Usage: open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-b <bundle identifier>] [-a <application>] [filenames] [--args arguments]
Help: Open opens files from a shell.
By default, opens each file using the default application for that file.
If the file is in the form of a URL, the file will be opened as a URL.
Options:
-a Opens with the specified application.
-b Opens with the specified application bundle identifier.
-e Opens with TextEdit.
-t Opens with default text editor.
-f Reads input from standard input and opens with TextEdit.
-F --fresh Launches the app fresh, that is, without restoring windows. Saved persistent state is lost, excluding Untitled documents.
-R, --reveal Selects in the Finder instead of opening.
-W, --wait-apps Blocks until the used applications are closed (even if they were already running).
--args All remaining arguments are passed in argv to the application's main() function instead of opened.
-n, --new Open a new instance of the application even if one is already running.
-j, --hide Launches the app hidden.
-g, --background Does not bring the application to the foreground.
-h, --header Searches header file locations for headers matching the given filenames, and opens them.
Die App öffnet sich im Vordergrund, als hätte ich einfach angerufen
open -a Franz
Irgendeine Idee, warum das nicht funktioniert und eine Alternative?
Messages
im Hintergrund öffnen , aber der Versuch,Books
mit denselben Flags zu öffnen, öffnet es im Vordergrund. Ärgerlich, dass Apples eigene Apps damit nicht funktionieren…Antworten:
Wenn Sie den Befehl open mit --hide aufrufen, funktioniert er (zumindest in Sierra MacOs). Zum Beispiel
Auch die j-Flagge hilft einigen
quelle
Zum Zeitpunkt des Schreibens (10.14.3 Mojave) lautet die richtige Antwort:
Wenn Sie tun
Sie können sehen, dass
quelle
Sie müssen das J vor dem a angeben
Beispiel: Öffnen Sie -ja /Applications/Calendar.app
quelle