Estou tentando adicionar 0 ao início, SE houver um "." no segundo caractere dessa linha. Eu não consegui combinar esses dois;
awk '{ print substr( $0, 2, 1 ) }' file.txt
mostrando o segundo caractere
sed -ie "s/.\{0\}/0/" file.txt...
21.04.2017 / 14:21