Path: utzoo!utgpu!news-server.csri.toronto.edu!bonnie.concordia.ca!thunder.mcrcim.mcgill.edu!snorkelwacker.mit.edu!usc!sdd.hp.com!caen!math.lsa.umich.edu!sharkey!wyn386!wybbs!sleepy From: sleepy@wybbs.mi.org (Mike Faber) Newsgroups: comp.unix.questions Subject: Re: Convert 'a' to 'A' in a Shell-Script Message-ID: <331@wybbs.mi.org> Date: 4 Feb 91 14:18:09 GMT References: <888@kivax.UUCP> <7019@ncrcae.Columbia.NCR.COM> Reply-To: sleepy@wybbs.UUCP (Mike Faber) Organization: Consultants Connection, Jenison MI Lines: 6 >>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.