DEV Community

Query Filter
Query Filter

Posted on

normalize

awk -F'~' -v OFS='~' '{ $19 = substr($19,1,20); print }' file1.csv > f1.norm
awk -F'~' -v OFS='~' '{ $19 = substr($19,1,20); print }' file2.csv > f2.norm

diff f1.norm f2.norm

Enter fullscreen mode Exit fullscreen mode

Top comments (0)