unix - count of columns in file

前端 未结 11 1964
北海茫月
北海茫月 2020-12-22 19:17

Given a file with data like this (i.e. stores.dat file)

sid|storeNo|latitude|longitude
2|1|-28.03720000|153.42921670
9|2|-33.85090000|151.03274200

11条回答
  •  一个人的身影
    2020-12-22 19:41

    If you have python installed you could try:

    python -c 'import sys;f=open(sys.argv[1]);print len(f.readline().split("|"))' \
        stores.dat
    

提交回复
热议问题