in reply to Re: file delta detection
in thread file delta detection
For sure. You need to put backslash in front of the pipe symbol when you intend to use it as a literal "vertical bar" character (or you could put quotes around it):
Provided that part is done right, I prefer using "cut" rather than "awk" -- it's just easier (and probably faster).cut -f3 -d\| X | sort > outx.txt cut -f3 -d'|' Y | sort > outy.txt
|
|---|