Wie öffne ich Dolphin in einem bestimmten Ordner vom Terminal aus?


10

Ich möchte meiner Taskleiste ein Startersymbol hinzufügen, das ausgeführt wird, dolphinaber zunächst in einem Ordner startet, den ich angeben möchte

Das Dolphin Handbook erklärt dies nicht.

Antworten:



3

Hilfeseiten

Die KDE-Anwendungen haben die Hilfe - mit dem 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

Starten Sie mit der Standardanwendung

Das KDE hat die "Standardanwendungen" in den KDE-Systemeinstellungen.

Der kfmclient ist:

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

Öffnen des Verzeichnisses mit dem Standard-Dateimanager:

kfmclient exec /path/to/the/directory/

Dies würde sich gut in einen Bash-Profil-Alias ​​oder eine Funktion integrieren lassen
PandasRocks

1

Wenn Sie Delfine von Ihrem aktuellen Pfad in Ihrem Terminal aus öffnen möchten, verwenden Sie einfach Folgendes:

dolphin . &
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.