Multiple delimiter-separated fields in awk or sed. Using awk command: ➜ awk -F'[:=|]' '{print $1, $2, $3}' test.log; Using sed command: ➜ sed 's/[:=|]/ /g' test.log...