Horje
awk delimiter semi-colon Code Example
awk delimiter semi-colon
Just use function split in awk command to split a line into an array 'a'
using a choosen string as delimiter as for example ", " in next use case:
echo "hi; bye; hey" | awk '{split($0,a,"; "); print a[3],a[2],a[1]}'




Shell

Related
wsl2 icmp_seq=165 Destination Host Unreachable after installing docker Code Example wsl2 icmp_seq=165 Destination Host Unreachable after installing docker Code Example
react-github-contribution-calendar Code Example react-github-contribution-calendar Code Example
tar exclude directories from a File Code Example tar exclude directories from a File Code Example
open broadcaster software ubuntu Code Example open broadcaster software ubuntu Code Example
awk print first characters of a field Code Example awk print first characters of a field Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9