我有以下文件,我使用 awk 脚本将其拆分为多个文件
原始文件名称:RTLOG_5019_05122016110959.DAT
我想设置分割文件的名称如下:
RTLOG_5019_<timestmap (format: mmddyyyyhhmiss) >.DAT.
我该如何实现这一目标?我不想对文件名进行硬编码,也不想将其filename-RTLOG_5019_05122016110959.DAT
作为参数
以下是我的 awk 脚本
awk -v stamp=$(date +%Y%m%d%H%M%S) '
/^FHEAD/ {HD = $0
next
}
/^THEAD/ {if (FN) { printf "FTAIL%010d%010d" ORS, LN+2, LN > FN
close (FN)
LN = 0
}
FN = "RTLOG_5019_" stamp ".DAT" ++f
print HD > FN
}
!/^FTAIL/ {print >> FN
LN++
}
END {printf "FTAIL%010d%010d" ORS, LN+2, LN > FN
} ' RTLOG_5019_05122016110959.DAT
答案1
我不确定你到底想做什么,但这可能会有所帮助:
awk -v var="new" 'BEGIN { print substr(ARGV[1], 0, 2) var substr(ARGV[1], 6); }' myoldfilename