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.
我想使用 gawk 匹配一个 32 个字符的十六进制字符串。
我发现我可以使用 /[A-F0-9]{32}/ ,但前提是我使用 --posix 或 --re 运行 gawk
有没有没有命令行选项的替代方案?(除了重复 [A-F0-9] 32 次!)
怎么样
gawk '/^[A-F0-9]*$/ && length($0)==32'