<bdo id='FR5qU'></bdo><ul id='FR5qU'></ul>

  • <i id='FR5qU'><tr id='FR5qU'><dt id='FR5qU'><q id='FR5qU'><span id='FR5qU'><b id='FR5qU'><form id='FR5qU'><ins id='FR5qU'></ins><ul id='FR5qU'></ul><sub id='FR5qU'></sub></form><legend id='FR5qU'></legend><bdo id='FR5qU'><pre id='FR5qU'><center id='FR5qU'></center></pre></bdo></b><th id='FR5qU'></th></span></q></dt></tr></i><div id='FR5qU'><tfoot id='FR5qU'></tfoot><dl id='FR5qU'><fieldset id='FR5qU'></fieldset></dl></div>

        <tfoot id='FR5qU'></tfoot>

        <small id='FR5qU'></small><noframes id='FR5qU'>

        <legend id='FR5qU'><style id='FR5qU'><dir id='FR5qU'><q id='FR5qU'></q></dir></style></legend>

        如何检查两个单独的文件中是否存在字符串列表

        时间:2023-11-07
          • <bdo id='unrkK'></bdo><ul id='unrkK'></ul>

              <tfoot id='unrkK'></tfoot>
                  <tbody id='unrkK'></tbody>

                <legend id='unrkK'><style id='unrkK'><dir id='unrkK'><q id='unrkK'></q></dir></style></legend>

                <i id='unrkK'><tr id='unrkK'><dt id='unrkK'><q id='unrkK'><span id='unrkK'><b id='unrkK'><form id='unrkK'><ins id='unrkK'></ins><ul id='unrkK'></ul><sub id='unrkK'></sub></form><legend id='unrkK'></legend><bdo id='unrkK'><pre id='unrkK'><center id='unrkK'></center></pre></bdo></b><th id='unrkK'></th></span></q></dt></tr></i><div id='unrkK'><tfoot id='unrkK'></tfoot><dl id='unrkK'><fieldset id='unrkK'></fieldset></dl></div>

                <small id='unrkK'></small><noframes id='unrkK'>

                • 本文介绍了如何检查两个单独的文件中是否存在字符串列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有两个文件,文件 A"是 IP 地址列表,对应的 MAC 地址位于同一行.文件 B"是仅 MAC 地址的列表.我需要比较这两个文件并列出文件 A 中没有在文件 B 中找到 MAC 地址的行.

                  I have two files, "File A" is a list of IP Addresses with corresponding MAC addresses on the same line. "File B" is a list of only MAC addresses. I need to compare the two files and list the lines from File A that do not have MAC addresses found in File B.

                  文件 A:

                  172.0.0.1 AA:BB:CC:DD:EE:01
                  172.0.0.2 AA:BB:CC:DD:EE:02
                  172.0.0.3 AA:BB:CC:DD:EE:03
                  

                  文件 B:

                  AA:BB:CC:DD:EE:01
                  AA:BB:CC:DD:EE:02
                  

                  所以输出应该是:

                  172.0.0.3 AA:BB:CC:DD:EE:03
                  

                  我正在寻找 sed、awk、grep、python 或任何能够为我提供所需文件的解决方案.

                  I am looking for solutions in sed, awk, grep, python or really anything that give me the file I want.

                  推荐答案

                  您的输入是否真的在每一行的开头都有一个美元符号,或者这是您问题的格式怪癖?如果你可以摆脱美元符号,那么你可以使用这个:

                  Does your input really have a dollar sign at the start of every line, or is that a formatting quirk of your question? If you can get rid of the dollar signs, then you can use this:

                  fgrep -v -f fileb filea
                  

                  这篇关于如何检查两个单独的文件中是否存在字符串列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 Pandas 从另一个数据帧中删除一个数据帧 下一篇:Python中集合的不区分大小写比较

                  相关文章

                    1. <i id='eF68G'><tr id='eF68G'><dt id='eF68G'><q id='eF68G'><span id='eF68G'><b id='eF68G'><form id='eF68G'><ins id='eF68G'></ins><ul id='eF68G'></ul><sub id='eF68G'></sub></form><legend id='eF68G'></legend><bdo id='eF68G'><pre id='eF68G'><center id='eF68G'></center></pre></bdo></b><th id='eF68G'></th></span></q></dt></tr></i><div id='eF68G'><tfoot id='eF68G'></tfoot><dl id='eF68G'><fieldset id='eF68G'></fieldset></dl></div>

                      <small id='eF68G'></small><noframes id='eF68G'>

                    2. <tfoot id='eF68G'></tfoot>
                        <bdo id='eF68G'></bdo><ul id='eF68G'></ul>
                    3. <legend id='eF68G'><style id='eF68G'><dir id='eF68G'><q id='eF68G'></q></dir></style></legend>