Printing a part of a string


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Printing a part of a string
# 1  
Old 04-07-2009
Printing a part of a string

hi
I have the input as follows
ABC =893
JKL = "jee"
alias PQR = 9833
alias STUVE = "kuiue"

I should be able to print as follows
ABC
JKL
alias PQR
alias STUVE


Thanks
Suresh
# 2  
Old 04-07-2009
Code:
sed 's/ =.*//'

Regards
# 3  
Old 04-07-2009
Hi
Thank you very much for your fast reply . It is working in most of the cases but not working only in the case as i have mentioned below
Can you please help

alias NAME = ..
alias HOME = ${HOME}/bdir
alias BASE = ${HOME}/runddir
alias SEND = ${TRES}/jundir/finddir

Thanks
Suresh
# 4  
Old 04-07-2009
Quote:
Originally Posted by ssuresh1999
Hi
Thank you very much for your fast reply . It is working in most of the cases but not working only in the case as i have mentioned below
Can you please help

alias NAME = ..
alias HOME = ${HOME}/bdir
alias BASE = ${HOME}/runddir
alias SEND = ${TRES}/jundir/finddir

Thanks
Suresh
Code:
nawk -F'\=' '{print $1}' zenith

# 5  
Old 04-07-2009
Thank you so much for the reply it is working fine
Cheers
Suresh
# 6  
Old 04-07-2009
Code:
sed 's/.*= *//' myFile

# 7  
Old 04-07-2009
Quote:
Originally Posted by vgersh99
Code:
sed 's/.*= *//' myFile


Code:
$ sed 's/.*= *//' myfile
 
Returns:
${HOME}/bdir
${HOME}/runddir
${TRES}/jundir/finddir

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help printing string

Hi, I have a file containing many times the word "IPaddress". and i need a command that finds that string or word and print it only once. I've tried the following but they print a line for each match: grep "IPaddress" /directory/file.xml find . | xargs grep 'IPaddress' -sl i have many... (2 Replies)
Discussion started by: blacksteel1988
2 Replies

2. Shell Programming and Scripting

[Solved] Printing a part of the last line of the specific part of a file

Hi, I have 80 large files, from which I want to get a specific value to run a Bash script. Firstly, I want to get the part of a file which contains this: Name =A xxxxxx yyyyyy zzzzzz aaaaaa bbbbbb Value = 57 This is necessary because in a file there are written more lines which... (6 Replies)
Discussion started by: wenclu
6 Replies

3. Shell Programming and Scripting

Deleting part of a string : string manipulation

i have something like this... echo "teCertificateId" | awk -F'Id' '{ print $1 }' | awk -F'te' '{ print $2 }' Certifica the awk should remove 'te' only if it is present at the start of the string.. anywhere else it should ignore it. expected output is Certificate (7 Replies)
Discussion started by: vivek d r
7 Replies

4. UNIX for Dummies Questions & Answers

Print part of string

I have a file called file.txt It contains strings: ALT=someone@acme.com TO=whoever@lalalulu.com How could find and print the actual address after the = sign for any given instance? I need the command to print one of them - for example someone@acme.com But have in mind that this... (3 Replies)
Discussion started by: svetoslav_sj
3 Replies

5. Shell Programming and Scripting

grep on string and printing line after until another string has been found

Hello Everyone, I just started scripting this week. I have no background in programming or scripting. I'm working on a script to grep for a variable in a log file Heres what the log file looks like. The x's are all random clutter xxxxxxxxxxxxxxxxxxxxx START: xxxxxxxxxxxx... (7 Replies)
Discussion started by: rxc23816
7 Replies

6. Shell Programming and Scripting

Need to take one part from a string

I have a string something like "/opt/src/default.cfg" OR /opt/src/common/one This whole string stored in an array. The problem is this string is not constant and it will keep on changing as lot of strings are stored in the array and it will be look like :- case 1 /opt/src/default.cfg ... (8 Replies)
Discussion started by: Renjesh
8 Replies

7. Shell Programming and Scripting

Part of a string

Hi mates, I am doing a script in ksh. I have the following string: /opt/one/two/four/five/myFile.txt And I have a variable: echo "${variable}" -> /opt/one/two/ I would like to have just the string: four/five/myFile.txt What is the better way to do that? Thanks in... (3 Replies)
Discussion started by: gonzaloron
3 Replies

8. Shell Programming and Scripting

Delete part of string

This command: du -s /Applications/TextMate.app Returns an output like this: 65792 /Applications/TextMate.app I need to delete the space and the file path in the output leaving just the number. Thanks (2 Replies)
Discussion started by: pcwiz
2 Replies

9. Shell Programming and Scripting

Getting part of a string

Hi, I have a string assinged to a varaible as below. FILE=/var/adm/message If $FILE is the value where it stores the path of message file. I would like to extract the location of the file message as below LOCATION=/var/adm FILE may have value like /var/adm/xxxx/message ... (2 Replies)
Discussion started by: raghu.amilineni
2 Replies

10. Shell Programming and Scripting

cutting part of string

Hi, I wanted to cut a specific portion from given string. How would I do that? Example: /u09/core/inbound/abc.txt is my string. I want abc.txt in a variable. Please help me. Regards, Dhaval (3 Replies)
Discussion started by: dhaval_khamar
3 Replies
Login or Register to Ask a Question