Print particular word


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Print particular word
# 1  
Old 08-30-2013
Print particular word

Hi,

How to print only the particular word instead of whole.

Code:
ls /dev|grep -i asm
asm_hdisk1
hdisk2_asm
hdisk3_asm
asm_hdisk4

Need output to print only the keyword "asm" alone. To confirm asm disks are there other than junk information
# 2  
Old 08-30-2013
use: grep -o

In your case:
Code:
ls /dev|grep -io asm

# 3  
Old 08-30-2013
Hi Bean,

Sorry friend, it doesn't work for me. since i am using AIX - KSH

Regards,
Siva
# 4  
Old 08-30-2013
Code:
ls /dev | awk 'match($0,/asm/) {print substr($0,RSTART,RLENGTH)}'

This User Gave Thanks to krishmaths For This Post:
# 5  
Old 08-30-2013
Thanks a lot Krish ..

Regards,
Siva
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Search for a specific word and print only the word from the input file

Hi, I have a sample file as shown below, I am looking for sed or any command which prints the complete word only from the input file. Ex: $ cat "sample.log" I am searching for a word which is present in this file We can do a pattern search using grep but I need to cut only the word which... (1 Reply)
Discussion started by: mohan_kumarcs
1 Replies

2. Shell Programming and Scripting

Print a word after a match

Hi all, I have the below line: 08 03 * * 1-5 XXXXXXXXXXXXX -ENVI LDNFOUAT10 -EXE xxxxxxxx -CONFIG \${xxxxx} -SUBCLASS RESET -START -EXTRAAPPARGS \" -env 38LDNFOUAT10 \" >> /tmp/SRRC_xxxxxxx_start.log.`/usr/bin/date +\%Y\%m\%d` 2>&1 I want to print just one word after the string "-env", in... (7 Replies)
Discussion started by: Cvg
7 Replies

3. Shell Programming and Scripting

[Solved] Search for a word and print the next word

Hi, I am trying to search for a word and print the next word. For example: My text is "<TRANSFORMATION TYPE ="Lookup Procedure">" I am searching for "TYPE" and trying to print ="Lookup Procedure" I have written a code like following: echo $line | nawk... (4 Replies)
Discussion started by: sampoorna
4 Replies

4. Shell Programming and Scripting

perl lwp find word and print next word :)

hi all, I'm new there, I'm just playing with perl and lwp and I just successfully created a script for log in to a web site with post. I have a response but I would like to have something like this: I have in my response lines like: <div class="sender">mimi020</div> <some html code.....>... (3 Replies)
Discussion started by: vogueestylee
3 Replies

5. Shell Programming and Scripting

How ti Grep for a word and print the next word

Hi can we grep for a word and print the next word of the greped word? ex:- create or replace function function_name create function function_name we should search for word "function" and output next word "function_name" from both lines. (3 Replies)
Discussion started by: manasa_vs
3 Replies

6. UNIX for Dummies Questions & Answers

How to print line starts with specific word and contains specific word using sed?

Hi, I have gone through may posts and dint find exact solution for my requirement. I have file which consists below data and same file have lot of other data. <MAPPING DESCRIPTION ='' ISVALID ='YES' NAME='m_TASK_UPDATE' OBJECTVERSION ='1'> <MAPPING DESCRIPTION ='' ISVALID ='NO'... (11 Replies)
Discussion started by: tmalik79
11 Replies

7. Shell Programming and Scripting

Help: Need to Print a string from a word

Hi Folks Can you please help me to grep a word from below test file Below is the file looks like ABCD Test:3 ZZZZYYYZZ ABCD TEST:38 XXXYYYZZZ I need below output echo $A=21455 echo $B=3 and for second line echo $A=324494 echo $B=38 I will use While read line for each line.. i... (7 Replies)
Discussion started by: Machha
7 Replies

8. UNIX for Dummies Questions & Answers

Script to search for a particular word in files and print the word and path name

Hi, i am new to unix shell scripting and i need a script which would search for a particular word in all the files present in a directory. The output should have the word and file path name. For example: "word" "path name". Thanks for the reply in adv,:) (3 Replies)
Discussion started by: virtual_45
3 Replies

9. Shell Programming and Scripting

Print word 1 in line 1 and word 2 in line 2 if it matches a pattern

i have a file in this pattern MATCH1 word1 IMAGE word3 word4 MATCH2 word1 word2 word3 word4 MATCH2 word1 word2 word3 word4 MATCH2 word1 word2 word3 word4 MATCH2 word1 word2 word3 word4 MATCH1 word1 IMAGE word3 word4 MATCH2 word1 word2 word3 word4 MATCH2 word1 word2 word3 word4 MATCH2 word1... (7 Replies)
Discussion started by: bangaram
7 Replies

10. UNIX for Dummies Questions & Answers

How to print the word

1) I had one query regarding how to define a particular value which has a space. For example, I would say for i in s su sur do print $i sleep 1 done This will results in s su sur Now I want... (0 Replies)
Discussion started by: ss_psm
0 Replies
Login or Register to Ask a Question