vote up 2 vote down star

I like to get window pid (only firefox) from wmctrl, i tried wmctrl -lp | grep Firefox | awk -F" " "{print $1}" but output not match my expect. Help please.

beer@beer-laptop# wmctrl -lp
0x0160001b -1 6504   beer-laptop x-nautilus-desktop
0x016000bd  0 6504   beer-laptop conference - File Browser
0x03e00003  0 0              N/A XBMC Media Center
0x03800081  0 7282   beer-laptop Xbmc_ConferenceWindow.py (~/.qlive/xbmc-conference) - gedit
0x0352f117  0 6963   beer-laptop Ask a Question - Stack Overflow - Chromium
0x01400040 -1 6503   beer-laptop Top Expanded Edge Panel
0x01400003 -1 6503   beer-laptop Bottom Expanded Edge Panel
0x03202deb  0 6866   beer-laptop beer@beer-laptop: ~/.qlive/conference
0x012000c4  0 12134  beer-laptop Common threads: Awk by example, Part 1 - Mozilla Firefox
beer@beer-laptop# wmctrl -lp | grep Firefox | awk -F"  " "{print $1}"
0x012000c4  0 12134  beer-laptop Common threads: Awk by example, Part 1 - Mozilla Firefox
  • In this case my prefer = 0x012000c4
flag

53% accept rate

4 Answers

vote up 8 vote down check
wmctrl -lp | awk '/Firefox/ { print $1 }'

No need for grep. Awk will do that. Also the default field separator is whitespace, so no need to specify that. Also, use single quotes around your awk script so the shell doesn't expand $1. That's why your script failed. $1 turned into nothing and your awk action became "print", which prints the whole line.

link|flag
vote up 1 vote down

Replace the double quotes around {print $1} with single quotes. That will prevent the shell from expanding $1.

link|flag
Dear Sir, what is the problem with my answer that caused you to downvote it? – lutz Sep 10 at 10:15
vote up 1 vote down

awk '{print $1}'

link|flag
vote up 0 vote down

You can do just:

wmctrl -lp | grep firefox | awk '{print $1}'
link|flag
1  
Awk is a pattern matching languge. No need for using grep. – dmckee Sep 10 at 13:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.