Skip to main content
2 of 3
deleted 9 characters in body
RomanPerekhrest
  • 30.9k
  • 5
  • 47
  • 68

Short Awk approach:

lsblk -nbio KNAME,TYPE,SIZE,MODEL | awk '$3>3e11' 

  • -n (--noheadings) - don't print headings

  • $3 - the 3rd field (SIZE column)

RomanPerekhrest
  • 30.9k
  • 5
  • 47
  • 68