从文本文件生成具有特定结构的新文件
在Linux上我有文件 orig-file.txt。此文件现在包含4个字段,但它们可能更少或更多(此文件由其他应用程序生成)。 什么是翻译的最佳选择 orig-file.txt 到像这样的文件 output-file.txt 文件(可能是shell脚本或awk等) 原稿-file.txt的 CREATE_TIMESTAMP TELEPHONE_NUMBER ID TYPE ------------------- -------------------- ---------- ----------------- 24-09-2009 16:17:45 33633333333 20 other_mmm_phone 24-09-2009 17:45:07 33644444444 20 other_mmm_phone 07-10-2009 10:45:49 12312312312 20 legacyphone 07-10-2009 11:46:38 59320000043 20 other_mmm_phone 输出file.txt的 CREATE_TIMESTAMP -> 24-09-2009 16:17:45 TELEPHONE_NUMBER -> 33633333333 ID -> 20 TYPE -> other_mmm_phone …