如何查找和显示文件


8

我要查找并显示图像。有什么方法可以使用管道或...吗?我想定位图像Xlocate X并显示路径,但是我无法将输出发送到xdg-open。

Answers:



7

您需要使用:

xdg-open "$(locate X)"

如果文件包含空格/特殊字符,则需要使用:

xdg-open "$(locate "X")"

注意:此命令必须直接在终端中使用。需要避免在shell脚本中使用此命令,因为它可能会产生错误或输出不一致。


1
@AmanMittal:PerlDuck是绝对正确的。只需切换到其他目录并输入命令即可。
托马斯
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.