web-dev-qa-db-fra.com

Comment ouvrir Dolphin dans un certain dossier depuis le terminal?

Je souhaite ajouter une icône de démarrage dans la barre des tâches qui exécute dolphin mais démarre initialement dans un dossier que je souhaite spécifier.

le Manuel de Dolphin n'explique pas cela.

8
rubo77

Essayez ceci dans le terminal: dolphin /usr/home/ (choisissez votre propre chemin). Pour plus d'informations, consultez la page de manuel (également disponible en ligne: http://manpages.ubuntu.com/manpages/hardy/man1/dolphin.1.html ).

9
don.joey

Pages d'aide

Les applications KDE ont l'aide - avec le 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

Lancer avec l'application par défaut

KDE a les "Applications par défaut" dans les paramètres système de KDE.

Le kfmclient est:

:~$ 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

Ouverture du répertoire avec le gestionnaire de fichiers par défaut:

kfmclient exec /path/to/the/directory/
1
user26687

Si vous souhaitez ouvrir Dolphin à partir de votre chemin actuel dans votre terminal, utilisez simplement:

dolphin . &
0
Keerthi S