0

I am under ubuntu and I would know how is possible to convert inside a directory and sub directory all the UPPER caracter in lower caracter.

Tk

ex

HEADING_TITLE = Administration
TABLE_HEADING_ADMINISTRATORS = Pseudonymes 

become

heading_title = Administration
table_heading_administrators = Pseudonymes
Yoko
  • 27
  • 1
  • 7

1 Answers1

0

To lower-case the first sequence of non-blank characters, with sed:

sed 's/[^[:blank:]]\+/\L&/' file
heading_title = Administration
table_heading_administrators = Pseudonymes 
glenn jackman
  • 238,783
  • 38
  • 220
  • 352