Не могли бы вы попробовать следующее.
awk 'gsub(/[a-z]+/,"&")==1' Input_file
Объяснение: Добавление пояснения к приведенному выше коду, это только для объяснения целей для запуска кода, любезно используйте вышеупомянутый сам код.
awk ' ##Starting awk program here.
gsub(/[a-z]+/,"&")==1 ##Using gsub function of awk to substitute all small letters occurrences with same values itself.
##Then checking count of it,if it is equal to 1 then print current line.
##awk works on method of condition and action, in above condition is mentioned but NO action so by default print of current line will happen.
' Input_file ##mentioning Input_file name here, which is being passed to awk program.