====== SED - Print - Print lines of N characters or longer ====== For example to print only lines of 65 characters or longer. sed -n '/^.\{65\}/p' sed -n '/[[:graph:]]\{65\}/p' # Handles special characters too.