I wish to delete one column of my data in awk but what I found is using command like $column_A="". Is column_A really deleted in this way?
For example, I wish to delete the second column and I found a solution: awk 'BEGIN{FS="\t";OFS="\t"}!($2="")'
which print the result like: $1^0^0$3
. It seems that it is the content of the second column is deleted but the second column.