如何从终端在某个文件夹中打开 Dolphin?

如何从终端在某个文件夹中打开 Dolphin?

我想在任务栏中添加一个启动图标,该图标会运行dolphin,但最初会从我想要指定的文件夹中启动

海豚手册没有解释这一点。

答案1

在终端中尝试此操作:(dolphin /usr/home/选择您自己的路径)。有关更多信息,请阅读手册页(也可在线获取:http://manpages.ubuntu.com/manpages/hardy/man1/dolphin.1.html)。

答案2

如果你想从终端的当前路径打开海豚,只需使用,

dolphin . &

答案3

帮助页面

KDE 应用程序有 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

使用默认应用程序启动

KDE 在 KDE 系统设置中有“默认应用程序”。

kfmclient 是:

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

使用默认文件管理器打开目录:

kfmclient exec /path/to/the/directory/

答案4

使用- 选择选项,例如

dolphin --select .

dolphin --select /

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

它不会在终端中作为前台作业运行,因此它不会阻止你的终端会话,并且没有 for & 等,并且可以接受额外的参数

相关内容