>>How can I convert "lowercase" characters in "uppercase" characters >>in a Shell-Script. >>f.e. convert all 'a' to 'A' ? >/usr/bin/tr works well for me. Use the syntax: tr "[a-z]" "[A-Z]" Good item for FAQ.