Awk To Get The Last Elemet After a Delimiter
- May 28th, 2020
- Posted in Documentation
- Write comment
I have to write these things, so I can find them when I inevitably need them again.
This will give you the last element in a delimited string:
awk -F β:β β{print $NF}β
Here is an example:
$ echo βelemet1:element2:element3:element4β | awk -F β:β β{print $NF}β
element4
No comments yet.