stu*_*ent 7 software-rec regular-expression file-manager
是否有任何图形文件管理器支持像 thunar 或 nautilus 这样的 linux 缩略图,它允许我通过正则表达式过滤目录。例如,输入/home/user/*tex
应显示所有 tex 文件,或[AB].*
所有以 A 或 B 开头的文件等。
是midnight-commander
一种基于图形和文本的混合体,支持通配符,即您在示例中显示的内容。
因此,声称是midnight-commander
(Krusador?)图形版本的文件管理器应该能够做到这一点。
例如,通配符和正则表达式之间的区别是
foo*bar in regex means foobar, fooobar, foooooooobar etc.
foo*bar in globbing means foo.bar fooxbar, all of the above.
Run Code Online (Sandbox Code Playgroud)
[AB]
意思是一样的,但是这里的点是通配符,那里的点是通配符。
ca[nt].png matches cat.png and can.png in both cases,
but catopng only as regex.
Run Code Online (Sandbox Code Playgroud)
通配符中的单个通配符是 ?:ca?
例如 cat、can、car 等。