How to convert image pixels to HEX color codes in a txt file?

前端 未结 1 496
隐瞒了意图╮
隐瞒了意图╮ 2021-01-28 11:25

How do I keep only the highlighted part?

\"Input

相关标签:
1条回答
  • 2021-01-28 11:38

    Run it through awk to print the 3rd field on every line where the line number is greater than 1:

    awk 'NR>1{print $3}' YourFile
    #574E3E
    #2E67FD
    #40A254
    
    0 讨论(0)
提交回复
热议问题