Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. crichmond

    csv/array problem

    Hello, I am new to awk and I am having a hard time figuring out how do get this to work: I want to process a csv file and write each column value out to a file, so i wrote this script: awk'{ for(i=1;i<NF;i++){ ct[$1]+=1 } for(val in ct){ print val } }' FS="," < mydata.csv Now that...

Part and Inventory Search

Back
Top