Abra la aplicación en segundo plano desde la Terminal

7

Estoy tratando de abrir una aplicación en segundo plano desde la Terminal utilizando los indicadores -g o --background como tal

open -g -a Franz

Lamentablemente, la aplicación no se abre en segundo plano. También probé el indicador j , que se supone que oculta la aplicación, de acuerdo con la ayuda:

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.

La aplicación se abre en primer plano como si hubiera llamado simplemente

open -a Franz

¿Alguna idea de por qué esto no funciona y una alternativa?

    
pregunta willlma 07.11.2016 - 18:55

1 respuesta

5

Si llama al comando open con --hide, funciona (al menos en Sierra MacOs). Por ejemplo

open -a /Applications/Skype.app --hide 
    
respondido por el Galuoises 18.10.2017 - 12:21

Lea otras preguntas en las etiquetas