'How to show only files that are larger than 2000 on bash in one line?

How to show only files that are larger than 2000 on bash in one line?

[gooder@GOD]$ find videos/ -type f -printf '%k %p\n' |sort -n |tail -n 20
1760 videos/0-2GBou1t.mp4
1500752 videos/0-2GBout.mp4
2291528 videos/0-2GB1.mkv


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source