Search Results

0
votes

X/Gnome: How to measure the geometry of an open window

$ xwininfo xwininfo: Please select the window about which you would like information by clicking the mouse in that window. xwininfo: Window id: 0x1200007 "xeyes" A …
1
vote

how do you search for files containing dos line endings (CRLF) with grep under linux?

If your version of grep supports -P (--perl-regexp) option, then grep -P '\r\n' could be used. …