问题描述
通常,我发现自己导航到一个目录很深,出于各种原因想要打开图形窗口(nautilus)。所以问题很简单:
做完之后
cd sampledirectory
cd sampledirectory2
如何在GUI中打开此位置?
最佳回答
我认为Gnome和Nautilus是:
nautilus .
在当前目录中打开。
将Nautilus替换为您使用的任何文件管理器(Dolphin等)。
次佳回答
最可移植的方法应该是使用freedesktop的xdg-utils xdg-open。例如
$ xdg-open .
这样的好处是可以从您的桌面使用偏好中选择工具来打开不同的文件类型,例如
$ xdg-open ~/Documents/mypresentation.odp
要么
$ xdg-open ~/Pictures/mypic.png
第三种回答
nautilus --no-desktop . &
第四种回答
nautilus 。
我已经做到了无数次。
这是我在每个系统上执行的操作:
苹果电脑:
#!/bin/sh
open /System/Library/CoreServices/Finder.app ${1:-.}
Linux /BSD(如果为Gnome):
#!/bin/sh
nautilus ${1:-.}
Windows … Cygwin …
#!/bin/sh
[ $# -eq 1 ] && exec explorer "$(cygpath -w "$1")"