Search Results

Search: Posts Made By: seddoubt
32,508
Posted By Don Cragun
The awk command language is case sensitive. ...
The awk command language is case sensitive. Change:
awk 'begin {fs=ofs=","} {print $15,$1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14}' ad.data>ad.csvto:
awk 'BEGIN {FS=OFS=","} {print...
1,225
Posted By hergp
Substitute the sequence , ... one comma ...
Substitute the sequence


, ... one comma
[ ]* ... zero or more blanks
? ... a question mark
[ ]* ... zero or more blanks
, ... one comma

with


, , ... the string...
1,225
Posted By hergp
^ ... begin of line, as you already pointed out ...
^ ... begin of line, as you already pointed out
\s ... whitespace character (blank, tab)
<=k ... a string literal
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 04:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy