FreeBSD - Tutorials, Security
Home   Archives   Sitemap   About   Contact

How to convert lower case to upper case letters in a shell script/command

Home NEW! Unix Forum News 100 Tips and Tricks Website Development Server Operating Systems Databases
 Ivorde.ROarrow 100 Tips and Tricks arrowHow to convert lower case to upper case letters in a shell script/command 

Article Sections

    Hello, Guest !
User name:
Password:
 
Google

 SATELLITE INTERNET
 FreeBSD Tutorials
 Linux LVM Commands
 Free Shell Accounts
 FreeBSD Project
 FreeBSD Handbook
 Advanced Bash-Scripting Guide
 The OpenBSD Project
 Distrowatch
 FreeBSD Handbook


Apache Webserver Home Page

Blog, intrebari si raspunsuri despre Leasing

Posted on: 17 Jun 2008
Author: mandrei
Section: 100 Tips and Tricks |
Views: 1612
Comments: 2 (Add)

How to convert lower case to upper case letters in a shell script/command
How to convert lower case to upper case letters in a shell script/command, convert lower case to upper case, convert upper case to lower case

Here are a few tricks that can help when one needs to convert lower case to upper case characters in a file or in the ouput of a command.

I will start with the following example file:

$ cat lower-upper-case.file
first lower case characters line
second lower case characters line
FIRST UPPER CASE CHARACTERS LINE
SECOND UPPER CASE CHARACTERS LINE

Cases

Convert lower case to upper case using tr

$ tr '[a-z]' '[A-Z]' < lower-upper-case.file
FIRST LOWER CASE CHARACTERS LINE
SECOND LOWER CASE CHARACTERS LINE
FIRST UPPER CASE CHARACTERS LINE
SECOND UPPER CASE CHARACTERS LINE

The above example translates all lower-case chars to upper-case and writes the output to standard output.

Instead of tr '[a-z]' '[A-Z]' one can choose to use tr "[:lower:]" "[:upper:]" as in the following example:

$ tr "[:lower:]" "[:upper:]" < lower-upper-case.file
FIRST LOWER CASE CHARACTERS LINE
SECOND LOWER CASE CHARACTERS LINE
FIRST UPPER CASE CHARACTERS LINE
SECOND UPPER CASE CHARACTERS LINE

Convert upper case to lower case using tr

$ tr '[A-Z]' '[a-z]' < lower-upper-case.file
first lower case characters line
second lower case characters line
first upper case characters line
second upper case characters line

and for the second example:

$ tr "[:upper:]" "[:lower:]" < lower-upper-case.file
first lower case characters line
second lower case characters line
first upper case characters line
second upper case characters line

Convert upper case to lower case using dd (conv=lcase)

$ dd if=./lower-upper-case.file of=./lower-upper-case.file2 conv=lcase
0+1 records in
0+1 records out
134 bytes transferred in 0.000103 secs (1301011 bytes/sec)
$ cat lower-upper-case.file2
first lower case characters line
second lower case characters line
first upper case characters line
second upper case characters line

Convert lower case to upper case using dd (conv=ucase)

$ dd if=./lower-upper-case.file of=./lower-upper-case.file2 conv=ucase
0+1 records in
0+1 records out
134 bytes transferred in 0.000103 secs (1301011 bytes/sec)
$ cat lower-upper-case.file2
FIRST LOWER CASE CHARACTERS LINE
SECOND LOWER CASE CHARACTERS LINE
FIRST UPPER CASE CHARACTERS LINE
SECOND UPPER CASE CHARACTERS LINE

Both methods are very handy, but I'd say that using tr helps better inside scripts. It can redirect the output to a second file and using in further activities.

I will also write a script for converting files & folders names from upper/lower case to lower/upper case .
How to switch lower case to upper case and upper case to lower case in a string

Bookmarks: Echo "How to convert lower case to upper case letters in a shell script/command" around:
del.icio.usdiggFurlYahooMyWebGoogleBookmarksFaceBookTechnocratti
-------------------advertising-----------------

Other articles in 100 Tips and Tricks /
» How to switch lower case to upper case and upper case to lower case in a string
» How to clear your terminal screen on Linux / FreeBSD
» qmail qmail-scanner/clamav qmail-inject: fatal: qq temporary problem / clamdscan: corrupt or unknown clamd scanner error or memory/resource/perms problem - exit status 512/2




Contact webmaster regarding this article
Register or Login to post your article
Hello, Guest ! You can Login or Register to www.ivorde.ro!

 Post comment:

Name:
Title:
Comment:
Please type the word you see in the image (anti-spam verification). Refresh the page if you don't understand the word.
Verification code
Allowed HTML Tags for comments:<p><strong><em><u><h1><h2><h3><h4><h5><h6><img><li>
<ol><ul><span><div><br><ins><del>

2 comment(s) to How to convert lower case to upper case letters in a shell script/command:

1. Re: How to convert lower case to upper case letters in a shell script/command
factorial by tarun at January 14th, 2011 - 12:51
echo "enter a no"
num=1
fact=1
num1=1
read num
while [ $num -ge 1 ]
do
fact=`expr $fact \* num`
num=`expr $num - $num1`
done
echo $fact

2. Re: How to convert lower case to upper case letters in a shell script/command
Sysadmin by Wayne at January 22nd, 2009 - 21:24
Nice - thanks!

   Latest topics on the forum:
Nginx + php-fpm setting php upload_max_filesize and other php values per vhost
Mysql> how to store select Zulu / UTC timestamp in database
Quagga ospf neighbour stuck in ExStart/DROther state
How to disable anonymous access in samba 3
"checking for libnet_build_ip in -lnet... no"+"ERROR! Libnet library not found"
CentOS Install Nemesis packet crafting tool + Libnet
Using curl to get the HTTP response from an HTTP server
Mdadm - Linux software RAID
Linux - Unable to login (and authentication succeeds) - File size limit exceeded
Linux/FreeBSD how to check ntp time synchronization
 
   Most viewed articles:
How to remove first/last character from a string using SED - 6469 views
How to clear/reset DNS cache on Windows XP / Linux - 4229 views
Reloading /etc/profile - how to reload Unix /etc/profile - 4182 views
How to calculate difference in days between two dates in MySQL - 4153 views
Set up HTTP PROXY via command line in Linux/FreeBSD - 3424 views

   Latest 10 articles:
FreeBSD - Collect installed hard disk drive information - 19 Mar 2009
Set up FTP PROXY via command line in Linux/FreeBSD - 19 Mar 2009
Set up HTTP PROXY via command line in Linux/FreeBSD - 19 Mar 2009
Qmail relay to smarthost: How to route all mail to a smarthost - 03 Feb 2009
EXIM 4 relay to smarthost: How to route all mail except local domain - 03 Feb 2009
Windows XP: print LISTEN ports and network connections using netstat - 30 Jan 2009
qmail qmail-scanner/clamav qmail-inject: fatal: qq temporary problem / clamdscan: corrupt or unknown clamd scanner error or memory/resource/perms problem - exit status 512/2 - 05 Dec 2008
How to cut out first last n characters from each file name, from a filelist - 04 Nov 2008
Mozilla Firefox3 is now released - 18 Jun 2008
How to switch lower case to upper case and upper case to lower case in a string - 17 Jun 2008


Archives
» 2007  |  June  |  October  |  November  |  December
» 2008  |  January  |  February  |  March  |  April  |  May  |  June  |  November  |  December
» 2009  |  January  |  February  |  March



Home | Archives | Sitemap | About | Contact

Designed and developed by Andrei Manescu. Optimized for Mozilla Firefox.  
Copyright 2007 Andrei Manescu
All trademarks and copyrights on this page are owned by their respective owners. Comments are owned by those who posted them.
Valid W3 Document Valid XHTML 1.0 Transitional Valid CSS! The FreeBSD Project Viewable With Any Browser