I need to change the first letter of every line in a file to uppercase, e.g.
the bear ate the fish. the river was too fast.
Would become:>
To change the file in place:
sed -i -e 's/^\(.\)/\U\1/' file.txt