I need a script in any language to capitalize the first letter of every word in a file.
Thanks for all the answers.
Stackoverflow rocks!
C#:
string foo = "bar baz"; foo = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(foo); //foo = Bar Baz