smirsistani
Programmer
hi
awk '{FS=",";print $2}'
one,two,three
four,five,six
five
why FS="," in line one do not work?
awk '{FS=",";print $2}'
one,two,three
four,five,six
five
why FS="," in line one do not work?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[teal]{[/teal][navy]FS[/navy][teal]=[/teal][i][green]","[/green][/i][teal];[/teal][highlight][navy]$0[/navy][teal]=[/teal][navy]$0[/navy][teal];[/teal][/highlight][b]print[/b] [navy]$2[/navy][teal]}[/teal]