Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将所有扩展名为 .xml、.csv 的文件以及所有名为 liveinfo.txt 的文件与 POSIX 正则表达式进行匹配。
你能帮忙吗?我知道如果我有一个可以使用的扩展名"\.acf"。
"\.acf"
谢谢,乔
使用POSIX 扩展正则表达式:
'\.xml|\.csv|liveinfo\.txt'
例如:
grep -E '\.xml|\.csv|liveinfo\.txt'