Sponsored Content
Top Forums Shell Programming and Scripting Trying to find number of uppercase and lowercase letters. Post 302572347 by kasparov on Wednesday 9th of November 2011 05:00:05 PM
Old 11-09-2011
Trying to find number of uppercase and lowercase letters.

Hello Guys,

I am writing a script which check each line for how many Uppercase and Lowercase letter of a given file. Please check my script as follow:

Code:
l=0

while read line
do
echo Line `expr $l + 1` has ` tr -cd "[A-Z]" < $line | wc -c` uppercase letters and
 `tr -cd "[a-z]" < $line | wc -c` lowercase letters.

l=`expr $l + 1`
done < $1

I am not getting what is wrong. I am not getting answer. Is anyone can help me?

Best Regards,
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

uppercase to lowercase

Greetings & Happy New Years To All! A client of mine FTP'ed their files up to the server and it all ended up being in UPPERCASE when it all should be in lowercase. Is there a builtin command or a script anyone knows of that will automagically convert all files to lowercase? Please advise asap... (4 Replies)
Discussion started by: webex
4 Replies

2. Shell Programming and Scripting

How convert lowercase or uppercase

It will only accept one argument where it should be upper or lowercase. if user choose to convert filnames to upper case than it should convert to upper or vice versa. if no action taken by the user then should not do anything any of the files in the current directory. (5 Replies)
Discussion started by: Alex20
5 Replies

3. Shell Programming and Scripting

UPPERCASE to lowercase with no overwriting?

Hey, I've just started learning shell script today. How would I write a bash script file that changes file names from uppercase to lowercase in that directory, the program should warn the user and NOT overwrite the existing file if it's already in lowercase? for example in a directory i... (1 Reply)
Discussion started by: lgd923
1 Replies

4. AIX

Lowercase to Uppercase

Inside a script I have 2 variables COMP=cy and PT=t. further down the same script I require at the same line to call those 2 variables the first time uppercase and after lowercase ${COMP}${PT}ACE,${COMP}${PT}ace. Can somebody help me Thanks in advance George Govotsis (7 Replies)
Discussion started by: ggovotsis
7 Replies

5. UNIX for Dummies Questions & Answers

uppercase to lowercase

i have no variable and no file i just want to convert AJIT to ajit with some command in UNIX can anybody help (4 Replies)
Discussion started by: ajit.yadav83
4 Replies

6. Shell Programming and Scripting

indentation and lowercase to uppercase

hi, i need to write a bash script that does two things. the program will take from the command line a file name, which is a C code, and an integer, which is the size of my indentation i would then have to indent every nested code by the number of columns provided by the user in the... (1 Reply)
Discussion started by: kratos.
1 Replies

7. UNIX for Dummies Questions & Answers

UPPERCASE to lowercase

Hi All, i have a file and i want to convert all uppercase letters to lowercase letters which are in my file. how can i do this. Thanx (3 Replies)
Discussion started by: temhem
3 Replies

8. Shell Programming and Scripting

Convert lowercase to uppercase

listprocs.sh contains ps -ef | grep "swikar" 1) Write a shell script to convert an input file to all upper case. Name your shell script toupper.sh. Hint: tr ' ' ' ' will convert all lower case letters to upper case To use your script, try the following command: cat... (1 Reply)
Discussion started by: swikar
1 Replies

9. Shell Programming and Scripting

Uppercase to lowercase

Hello, I have a list of files in a directory whose names are all in uppercasse, including the file format for eg *.MP3 . I would like to convert these to the normal way we write it ie ABC.MP3 to be converted to Abc.mp3 . I know that this can be done manually by using a lot of "mv" or rename... (6 Replies)
Discussion started by: ajayram
6 Replies

10. Shell Programming and Scripting

Cannot find correct syntax to make file name uppercase letters

I have a file name : var=UsrAccChgRpt I want to make them upper case. Tried: $var | tr Error: tr: Invalid combination of options and Strings. Usage: tr | -ds | -s | -ds | -s ] String1 String2 tr { -d | -s | -d | -s } String1 Could you please help. I am using AIX... (2 Replies)
Discussion started by: digioleg54
2 Replies
INTERCAL::Charset::Baudot(3pm)				User Contributed Perl Documentation			    INTERCAL::Charset::Baudot(3pm)

NAME
Charset::Baudot - allows to use Baudot string constants in ASCII programs (and v.v.) SYNOPSIS
use Charset::Baudot 'baudot2ascii'; my $a = baudot2ascii"(Baudot text)"; DESCRIPTION
Charset::Baudot defines functions to convert between a subset of ASCII and a subset of nonstandard Baudot - the original Baudot allows only letters, numbers, and some punctuation. We assume that a "Shift to letters" code while already in letters mode means "Shift to lowercase" and "Shift to figures" while already in figures mode means "Shift to symbols". This allows to use up to 120 characters. However, for sim- plicity some characters are available in multiple sets, so the total is less than that. Two functions, baudot2ascii and ascii2baudot, are exportable (but not exported by default). They do the obvious thing to their first argu- ment and return the transformed string. BAUDOT CHARACTER TABLE
The following are the characters recognised. As described, the "shift" characters have nonstandard meaning. set Letters Lowercase Figures Symbols code 00 N/A N/A N/A N/A 01 E e 3 Cents 02 L/F L/F L/F L/F (line feed) 03 A a - + 04 Space Space Space Tab 05 S s BELL 06 I i 8 # 07 U u 7 = 08 C/R C/R C/R C/R (carriage return) 09 D d $ * 10 R r 4 { 11 J j ' ~ 12 N n , XOR 13 F f ! | 14 C c : ^ 15 K k ( < 16 T t 5 [ 17 Z z " } 18 W w ) > 19 L l 2 ] 20 H h N/A backspace 21 Y y 6 @ 22 P p 0 N/A 23 Q q 1 POUND 24 O o 9 NOT 25 B b ? delete 26 G g & N/A 27 Figures Figures Symbols Symbols 28 M m . % 29 X x / _ 30 V v ; N/A 31 Lowercase Lowercase Letters Letters COPYRIGHT
This module is part of CLC-INTERCAL. Copyright (C) 1999, 2000, 2002, 2006, 2007 Claudio Calvelli, all rights reserved See files README and COPYING in the distribution for information. SEE ALSO
A qualified psychiatrist. perl v5.8.8 2008-03-29 INTERCAL::Charset::Baudot(3pm)
All times are GMT -4. The time now is 08:02 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy