awk
This is an old revision of the document!
Split a string
$ echo "abc:def:ghi" | awk -F':' '{print $3}' ghi
awk.1367077947.txt.gz · Last modified: 2023/08/18 18:15 (external edit)
This is an old revision of the document!
$ echo "abc:def:ghi" | awk -F':' '{print $3}' ghi