21 Dec
2017
21 Dec
'17
14:06
On Thu, 21 Dec 2017, 15:00:52 +0100, Manfred Hollstein wrote:
On Thu, 21 Dec 2017, 14:28:03 +0100, Patrick Shanahan wrote:
* Patrick Shanahan <paka@opensuse.org> [12-21-17 08:22]: [...]
xdpyinfo. If that doesn't reveil the evil, you can try brute-force using find -x / /boot /var /usr /home -type f -print0 | xargs -0 -r fgrep -l xdpyinfo
hickup, find does not like "-x" ?? presently running w/o.
sorry, "-x" is used by other tools to not descend directories on other filesystems. It's called "-xdev" for find...
oh well... "paths must precede expression"... The proper command looks like: find / /boot /var /usr /home -xdev -type f -print0 | xargs -0 -r fgrep -l xdpyinfo HTH, cheers. l8er manfred