我在windows环境下运行,没有使用过grep/awk/sed/shell;但是,我想知道以下问题的最简单解决方案是什么:
我有两个文件(它们都有标题):
- 遗传学文件。列是动物、汽车、颜色
- 标本文件。列是动物,颜色
我想将这两个文件合并到一个文件中,所有标题都存在;但是,对于样本文件部分,Car
. 最终产品将是:
+----------+------+-------+---------------------------------------------------------------------+
| Animal | Car | Color | |
+----------+------+-------+---------------------------------------------------------------------+
| Elephant | Jeep | Grey | (from genetics file [don’t include this text in the resulting file) |
| Dog | Ford | Red | (from genetics file) |
| Cat | | Blue | (from specimen file) |
| Donkey | | Green | (from specimen file) |
+----------+------+-------+---------------------------------------------------------------------+
Windows 环境中最简单的解决方案是什么?
编辑:澄清这些标签的原因是因为我相信这些工具最适合这项工作!我不想仅仅为此而创建一个完整的 c# 应用程序。