¿Cómo abro Dolphin en una determinada carpeta desde la terminal?

¿Cómo abro Dolphin en una determinada carpeta desde la terminal?

Me gustaría agregar un ícono de inicio a mi barra de tareas que se ejecuta dolphinpero inicialmente comienza en una carpeta que me gustaría especificar

elManual de delfinesno explica esto.

Respuesta1

Pruebe esto en la terminal: dolphin /usr/home/(elija su propia ruta). Para obtener más información, lea la página de manual (también disponible en línea:http://manpages.ubuntu.com/manpages/hardy/man1/dolphin.1.html).

Respuesta2

Si desea abrir Dolphin desde su ruta actual en su terminal, simplemente use,

dolphin . &

Respuesta3

Páginas de ayuda

Las aplicaciones de KDE tienen la ayuda - con Dolphin:

:~$ dolphin --help
Usage: dolphin [Qt-options] [KDE-options] [options] [Url] 

File Manager

Generic options:
  --help                    Show help about options
  --help-qt                 Show Qt specific options
  --help-kde                Show KDE specific options
  --help-all                Show all options
  --author                  Show author information
  -v, --version             Show version information
  --license                 Show license information
  --                        End of options

Options:
  --select                  The files and directories passed as arguments will be selected.
  --split                   Dolphin will get started with a split view.

Arguments:
  Url                       Document to open

Iniciar con la aplicación predeterminada

KDE tiene las "Aplicaciones predeterminadas" en la configuración del sistema KDE.

El cliente kfm es:

:~$ kfmclient --help
Usage: kfmclient [Qt-options] [KDE-options] [KDE-tempfile-options] [options] command [URL(s)] 

KDE tool for opening URLs from the command line

Generic options:
  --help                    Show help about options
  --help-qt                 Show Qt specific options
  --help-kde                Show KDE specific options
  --help-kde-tempfile       Show KDE-tempfile specific options
  --help-all                Show all options
  --author                  Show author information
  -v, --version             Show version information
  --license                 Show license information
  --                        End of options

Options:
  --noninteractive          Non interactive use: no message boxes
  --commands                Show available commands

Arguments:
  command                   Command (see --commands)
  URL(s)                    Arguments for command

Abriendo el directorio con el administrador de archivos predeterminado:

kfmclient exec /path/to/the/directory/

Respuesta4

Usar--seleccionaropción, por ejemplo

dolphin --select .

dolphin --select /

dolphin --select /path/you/want/.

No se ejecutará como trabajo de primer plano en la terminal, por lo que no bloqueará su sesión de terminal y no hay for & etc y puede requerir argumentos adicionales.

información relacionada