提问人:user3341592 提问时间:5/24/2017 最后编辑:user3341592 更新时间:6/17/2017 访问量:195
如何让 Emacs 的 M-x rgrep 同时使用 UTF8 和 UTF16 文件?
Way to make Emacs' M-x rgrep work with both UTF8 and UTF16 files?
问:
是否可以自定义 Emacs,以便在 UTF8(甚至拉丁语)和 UTF16 文件中正确找到某些模式的出现?rgrep
我想我们应该定制,但无法通过它。grep-find-template
编辑 2017-06-16我现在确实有一个为 shell 工作 utf-8/16 命令的示例。如果可能的话,它应该被转换为 Emacs 的。在这里:cat
grep
cat $1 | ( [[ $(file -i $1) =~ utf-16be ]] && ( iconv -f UTF-16 -t UTF-8 || true ) || cat )
答: 暂无答案
评论
grep
grep-find-template
"find <D> <X> -type f <F> -print0 | \"xargs\" -0 grep <C> -nH -e <R>"
grep
iconv
iconv
grep