File name lower to upper in Shell


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting File name lower to upper in Shell
# 8  
Old 03-20-2013
Code:
$ file_name1=ryk11603_PLK5692601_RKYADAV.PDF
$ echo ${file_name1}| cut -d"#" -f2 | tr [:lower:] [:upper:] | sed "s/\([^_]*\)_PLK\([0-9]*\).*PDF/\1_\2.pdf/"
RYK11603_5692601.pdf

This User Gave Thanks to anbu23 For This Post:
# 9  
Old 03-20-2013
sed

Quote:
Originally Posted by anbu23
Code:
$ echo ${file_name1}| cut -d"#" -f2| sed "s/\([^_]*\)_PLK\([0-9]*\).*PDF/\1_\2.pdf/"
RYK11603_5692601.pdf


file_name1=RYK11603_PLK5692601_RKYADAV_RHGT_GHTH.PDF
What if we have mutiple _ like above file name and
and i just need
RYK11603_5692601.pdf
# 10  
Old 03-20-2013
Pls post the sample possible inputs and the output expected.
This User Gave Thanks to panyam For This Post:
# 11  
Old 03-20-2013
Here is a suggestion:
Code:
$ echo $file_name1
RYK11603_PLK5692601_RKYADAV_RHGT_GHTH.PDF
$ echo $file_name1 | sed "s/\(.*\)_PLK\([0-9]*\)_.*/\1_\2.pdf/"
RYK11603_5692601.pdf

This User Gave Thanks to hanson44 For This Post:
# 12  
Old 03-20-2013
@tadavricky. I tried you original solution on Solaris 10 and it worked without a hitch..
As an alternative you could try:
Code:
printf "%s\n" "${file_name1}"| awk -F'[-~_][A-Z]*' '{sub(/.*#/,x); print $1=$1 "_" $2 tolower ($3)}'

On Solaris use /usr/xpg4/bin/awk

Last edited by Scrutinizer; 03-20-2013 at 09:31 PM..
This User Gave Thanks to Scrutinizer For This Post:
# 13  
Old 03-20-2013
RedHat sed on HP UX and Linux

Quote:
Originally Posted by Scrutinizer
@tadavricky. I tried you original solution on Solaris 10 and it worked without a hitch..
As an alternative you could try:
Code:
printf "%s\n" "${file_name1}"| nawk -F'[-~_][A-Z]*' '{sub(/.*#/,x); print $1=$1 "_" $2 tolower ($3)}'

@Scrutinizer thanks for reply
here is the one more strange thing

If we run the below command on HP UX it gives output as below which is i need
Code:
export var1=myguidelines
export var1_upper=MYGUIDELINES
i=pk#RYK30213_MYGUIDELINES_PAPER.PDF
file1=$(echo ${i}| cut -d"#" -f2|  sed "s/\([!-~]*\)_${var1_upper}_\([!-~]*\).PDF/\1_${var1_upper}.pdf/")
echo $file1

output :RYK30213_MYGUIDELINES.pdf
output Needed:RYK30213_MYGUIDELINES.pdf


If we run the command on LInux the out is not correct.
Code:
export var1=myguidelines
export var1_upper=MYGUIDELINES
i=pk#RYK30213_MYGUIDELINES_PAPER.PDF
file1=$(echo ${i}| cut -d"#" -f2|  sed "s/\([!-~]*\)_${var1_upper}_\([!-~]*\).PDF/\1_${var1_upper}.pdf/")
echo $file1

Output: RYK30213_MYGUIDELINES_PAPER.PDF
output Needed: RYK30213_MYGUIDELINES.pdf

it would be good learning if you can find the reason. also please help to correct the sed

---------- Post updated at 05:45 PM ---------- Previous update was at 05:25 PM ----------

export var1=myguidelines
export var1_upper=MYGUIDELINES
i=pk#RYK30213_MYGUIDELINES_PAPER.PDF
file1=$(echo ${i}| cut -d"#" -f2| sed "s/\([^-~]*\)_${var1_upper}_\([^-~]*\).PDF/\1_${var1_upper}.pdf/")
echo $file1
output: RYK30213_MYGUIDELINES.pdf

i=pk#RYK30213_MYGUIDELINES_PAPER_RFR_PF.PDF
file1=$(echo ${i}| cut -d"#" -f2| sed "s/\([^-~]*\)_${var1_upper}_\([^-~]*\).PDF/\1_${var1_upper}.pdf/")
echo $file1
output/ RYK30213_MYGUIDELINES.pdf

The out is correct after i replace the ^ with !

do we have any explaination why?

Thanks for all your help and input, last answer i look is why?

Last edited by Scrutinizer; 03-20-2013 at 07:30 PM.. Reason: code tags
# 14  
Old 03-20-2013
Try:
Code:
printf "%s\n" "${i}"| cut -d"#" -f2| sed "s/\([[:punct:][:alnum:]]*\)_${var1_upper}_\([[:punct:][:alnum:]]*\)\.PDF/\1_${var1_upper}.pdf/"

It finally dawned on me that [!-~] is of course the range of ascii printable characters between ! and ~ Smilie, and that probably this will give different results, depending on locale settings.

Last edited by Scrutinizer; 03-20-2013 at 08:07 PM..
This User Gave Thanks to Scrutinizer For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

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. ......................... (6 Replies)
Discussion started by: stevie_velvet
6 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

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

4. Shell Programming and Scripting

[Solved] Change Upper case to Lower case in C shell

Is there a command that can switch a character variable from UPPER case to lower case? like foreach AC ( ABC BCD PLL QIO) set ac `COMMAND($AC)` ... end Thanks a lot! (3 Replies)
Discussion started by: rockytodd
3 Replies

5. Shell Programming and Scripting

addition of text upper and lower end of file

Hello folks, I have a file that size is over 20GB. if i open in vi it takes ages. i want to add three lines at the top of file and three lines at the end of files. lines are as follows upper three lines 114444bbbbbb dddd4544d4cc rrrr4dddddddd5 at the end of file need to add three... (2 Replies)
Discussion started by: learnbash
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

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

9. UNIX for Dummies Questions & Answers

lower case to upper case string conversion in shell script

How can convert a Lower case variable value to an upper case in the kron shell script. (3 Replies)
Discussion started by: dchalavadi
3 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