Lower to upper..tr + awk ?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Lower to upper..tr + awk ?
# 1  
Old 08-20-2016
Lower to upper..tr + awk ?

I have a file that has a pattern 2 lines, blanktwo line
If encountering the first line, the 2nd line need to be converted to UPPERCASE...or...conver the 2nd line after ablank into uppercase

Is there a 'tr' function in awk..(probably the best tool over sed) ?


i.e.
......................
Code:
a
b

c
d

e
f

.................
becomes...
.................
Code:
a
B

c
D

e
F


Last edited by Scrutinizer; 08-21-2016 at 03:25 AM.. Reason: code tags
# 2  
Old 08-20-2016
Try:

Code:
awk 'f{gsub(/[[:lower:]]/,toupper($0));f=0};NF{f=1}1' file

# 3  
Old 08-21-2016
Try:
Code:
awk '{$2=toupper($2)}1' RS= ORS='\n\n' FS='\n' OFS='\n' file

--
fix for pilnet101's approach:
Code:
awk 'f{gsub($0,toupper($0));f=0};NF{f=1}1' file

or better:
Code:
awk 'f{$0=toupper($0);f=0}; NF{f=1}1' file

Of these 3 suggestions, I think #3 is the most robust, since it does not use regex while the input file may contain special characters (#2), nor does it depend on the empty line being completely empty (no whitespace) + does it leave a trailing empty line at the end of the file (#1)..

Last edited by Scrutinizer; 08-21-2016 at 10:59 AM..
# 4  
Old 08-21-2016
Hello stevie_velvet,

Please use code tags as per foum rules for your commands/codes/Inputs into your post, could you please try following and let me know if this helps.
Code:
awk '!NF{A[i]=toupper(A[i]);i++;next} {A[++i]=$0} END{if(A[i]){A[i]=toupper(A[i])};for(j=1;j<=i;j++){print A[j]}}'  Input_file

Output will be as follows.
Code:
a
B

c
D

e
F

Thanks,
R. Singh
# 5  
Old 08-21-2016
Print uppercase if previous line had fields (was not empty)
Code:
awk '{print pnf?toupper($0):$0; pnf=NF}'

# 6  
Old 08-21-2016
I'm not quite sure what "I have a file that has a pattern 2 lines, blanktwo line" means. I would have thought that blanktwo line meant that there would be two blank lines, but I don't see any examples of that in the sample input file. The following will set all lowercase characters on the second non-blank line in each set of non-blank lines separated by one or more blank lines:
Code:
awk '++n==2{$0=toupper($0)} !NF{n=0} 1' file

If file contains:
Code:
a
b

c
d

e
f

g


h
i
j


k
l
m
n

it produces the output:
Code:
a
B

c
D

e
F

g


h
I
j


k
L
m
n

# 7  
Old 08-21-2016
Hi.

I'm assuming that the file format is: "2 lines, blank [line], 2 lines, blank [line] ... " However, I am not sure if the awk was a requirement or not. If so, then there are a number of awk solutions above; if not, then here are a few alternatives:
Code:
#!/usr/bin/env bash

# @(#) s1       Demonstrate UPPERCASE specific lines, sed.

# Utility functions: print-as-echo, print-line-with-visual-space, debug.
# export PATH="/usr/local/bin:/usr/bin:/bin"
LC_ALL=C ; LANG=C ; export LC_ALL LANG
pe() { for _i;do printf "%s" "$_i";done; printf "\n"; }
pl() { pe;pe "-----" ;pe "$*"; }
em() { pe "$*" >&2 ; }
db() { ( printf " db, ";for _i;do printf "%s" "$_i";done;printf "\n" ) >&2 ; }
db() { : ; }
C=$HOME/bin/context && [ -f $C ] && $C sed perl pass-fail

FILE=${1-data1}
E=expected-output.txt

pl " Input data file $FILE:"
cat $FILE

pl " Expected output:"
cat $E

# GNU sed, address: first~step
# Match every step'th line starting with line first.
# man sed
#
# sed 's/\(.*\)/\L\1/' # but use "U" for uppercase
# http://stackoverflow.com/questions/4569825/sed-one-liner-to-convert-all-uppercase-to-lowercase

pl " Results, GNU sed "s":"
sed '2~3s/\(.*\)/\U\1/' $FILE

pl " Results, GNU sed "s", extended RE, more readable:"
sed -r '2~3s/(.*)/\U\1/' $FILE

pl " Results, GNU sed "s", extended RE, '&' = whatever is matched:"
sed -r '2~3s/.*/\U&/' $FILE

pl " Results, GNU sed "y":"
sed '2~3y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' $FILE

pl " Results, perl:"
perl -wp -e 'BEGIN{$p=2};if ( $. == $p ) { y/[a-z][A-Z]/[A-Z][a-z]/; $p += 3; }' $FILE |
tee f1

# Check final result automatically.

pass-fail

exit 0

producing:
Code:
$ ./s1

Environment: LC_ALL = C, LANG = C
(Versions displayed with local utility "version")
OS, ker|rel, machine: Linux, 3.16.0-4-amd64, x86_64
Distribution        : Debian 8.4 (jessie) 
bash GNU bash 4.3.30
sed (GNU sed) 4.2.2
perl 5.20.2
pass-fail - ( local: RepRev 1.6, ~/bin/pass-fail, 2016-07-23 )

-----
 Input data file data1:
a
b

c
d

e
f

-----
 Expected output:
a
B

c
D

e
F

-----
 Results, GNU sed s:
a
B

c
D

e
F

-----
 Results, GNU sed s, extended RE, more readable:
a
B

c
D

e
F

-----
 Results, GNU sed s, extended RE, '&' = whatever is matched:
a
B

c
D

e
F

-----
 Results, GNU sed y:
a
B

c
D

e
F

-----
 Results, perl:
a
B

c
D

e
F

-----
 Comparison of 8 created lines with 8 lines of desired results:
 Succeeded -- files (computed) f1 and (standard) expected-output.txt have same content.

Best wishes ... cheers, drl
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Awk: get upper and lower bound per group

Hi all, I've data as: 22 51018157 51018157 exonic CHKB nonsynonymous SNV 22 51018204 51018204 exonic CHKB nonsynonymous SNV 22 51018428 51018428 exonic CHKB nonsynonymous SNV 22 51018814 51018814 ... (4 Replies)
Discussion started by: genome
4 Replies

2. Shell Programming and Scripting

Upper to lower case in encoded file

Hi All, I want to change the out put of a decode file from lower to upper. i used tr command but facing issue. set -vx id=$(id) dt=$(date) store=$1 if ]; then cd $APPL_TOP/local/bin cp .sqlpass.Z $$.temp.Z uncompress $$.temp.Z sed -e s/sqlpass/$$.sqlpass/ $$.temp >... (5 Replies)
Discussion started by: nag_sathi
5 Replies

3. Shell Programming and Scripting

File name lower to upper in Shell

I have a file file_name1=RYK11603_PLK5692601_RKYADAV.PDF i am using the below command to convert this file to RYK11603_5692601.pdf file_name=$(echo ${file_name1}| cut -d"#" -f2| sed "s/\(*\)_PLK\(*\)_\(*\).PDF/\1_\2.pdf/") but no success can somebody help on thi. (13 Replies)
Discussion started by: yadavricky
13 Replies

4. Shell Programming and Scripting

Trying to test for both upper and lower case directories

I am trying to get a script to print out whether a directory is lowercase uppercase or both. This is what I've got so far: echo -e read "enter name" read server for DIR in $(find /tmp/$server -type d -prune | sed 's/\.\///g');do if expr match "$server" "*$" > /dev/null; then echo "$server -... (7 Replies)
Discussion started by: newbie2010
7 Replies

5. Shell Programming and Scripting

Upper and Lower case

Hi, I think this is a weird problem. I have two files...one with all UPPER case and the other one with a mix of upper and lower. Match each record in file1 against record in file2, if they match, then change the record in file1 to that of record in file2. Thanks in advance. (2 Replies)
Discussion started by: jacobs.smith
2 Replies

6. Shell Programming and Scripting

lower to upper case in ksh

What is the command to change the contents of a file to UPPER case. Here in this file below you see some characters are Sp, Ch 1200812270046581 22885072800000652 B86860003OLFXXX592123320081227 22885029800000652 B86860003ODL-Sp592123420081227 22885093700000652-B94030001ODL-Ch592123520081227... (4 Replies)
Discussion started by: kshuser
4 Replies

7. Shell Programming and Scripting

how to convert from upper to lower case

Hi I am working in ksh and need to convert the following line into lower case: N344 N228 P227 N115 P116 N332 P331 P343 P293 N342 N294 N335 N329 P330 P336 P097 P092 N098 P334 N337 P345 P338 N091 N333 so the output should look like this: n344 n228 p227 n115 p116 n332 p331 p343 p293 n342... (5 Replies)
Discussion started by: aoussenko
5 Replies

8. Shell Programming and Scripting

using AWK see the upper lines and lower lines of the strings??

Hi experts, You cool guys already given me the awk script below- awk '/9366109380/,printed==5 { ++printed; print; }' 2008-09-14.0.log Morever, i have one more things- when i awk 9366109380, i can also see the Upper 3 lines as well as below 5 lines of that string. Line 1.... (3 Replies)
Discussion started by: thepurple
3 Replies

9. Shell Programming and Scripting

Accepting Upper and Lower case

Hi Gurus, This is my script: echo "" echo "Do you want to execute DWH Test Program?" echo "" echo -n "Okay?("y" or "n")=> " set ret = $< if ($ret != "y") then echo "" echo "" echo "End." exit 0 How can I make this script accept uppercase as well?... (8 Replies)
Discussion started by: lweegp
8 Replies

10. Shell Programming and Scripting

Upper And Lower Case

Hi! I pass a parameter to a script code and I have to make it upper case before use: $ MyShell aBcDe script code: UpperVariable=function($1) I can't know how make function, maybe some sed option? Thank You, PARIDE (1 Reply)
Discussion started by: pciatto
1 Replies
Login or Register to Ask a Question