Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problem with Awk & Grep

Tags:

linux

grep

awk

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
like image 763
wearetherock Avatar asked Mar 26 '26 03:03

wearetherock


2 Answers

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.

like image 118
camh Avatar answered Mar 28 '26 16:03

camh


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


Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!