Short Awk approach:
lsblk -nbio KNAME,TYPE,SIZE,MODEL | awk '$3>3e11' -n(--noheadings) - don't print headings$3- the 3rd field (SIZEcolumn)3e11- E-notation. the letterE(ore) is often used to represent "times ten raised to the power of" (which would be written as"× 10n") and is followed by the value of the exponent; in other words, for any two real numbersmandn, the usage of "mEn" would indicate a value ofm × 10n.3e11is equivalent to300000000000.