Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #87373

Re: Pexpect idea - but can I handle curses?

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!eternal-september.org!feeder.eternal-september.org!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed1a.news.xs4all.nl!xs4all!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <skip.montanaro@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.163
X-Spam-Level *
X-Spam-Evidence '*H*': 0.68; '*S*': 0.00; 'cc:addr:python-list': 0.11; 'accepts': 0.16; 'all.': 0.16; 'wrote:': 0.18; 'cc:addr:python.org': 0.22; 'pointer': 0.24; 'skip': 0.24; 'cc:2**0': 0.24; '(for': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; "doesn't": 0.30; 'message-id:@mail.gmail.com': 0.30; "skip:' 10": 0.31; '13,': 0.31; 'though.': 0.31; 'run': 0.32; 'fri,': 0.33; 'except': 0.35; 'received:google.com': 0.35; 'thanks': 0.36; 'subject:?': 0.36; 'e.g.': 0.38; 'subject:can': 0.39; 'either': 0.39; 'users': 0.40; 'world.': 0.61; 'show': 0.63; 'name': 0.63; 'skip:\xe2 10': 0.65; 'thomas': 0.65; 'mar': 0.68; '2015': 0.84; 'subject:handle': 0.84
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=6y0bD26uMoj4/6AWirLKa9aYqlOvNjymy9l1cYTfeTU=; b=NQkV6dbFcB2QNjpSBzLrjI1vNwvmcd7LLY3QVuvgyZD8ZtKX7hvMcwEe3AtMys8yU1 LgRfCx+2iVG8yMoOVSK5NS+UhcDDrqYMTsXjRQM6HIw07JLYdcifTKdRMPneczQhqrE+ mi6ivcQt7ZQZF052TGBdmL1nCj90rBR15iVxG/UYqdng9Yvay5SQM9uKbmrHRgnL/3Fo OLaZPHkTgeJJupkGr14KRAEXKoObxDFLQp+gC1YpgSZQTgDeDJbc9WxYoOUDMcjQXs3O 7589bKDMIibZoFfpfX5V2eDVZZxtEk9jTzx0tYfCECj9coYHp861UH7e92w3iOZyQrN+ 5iUg==
MIME-Version 1.0
X-Received by 10.60.115.99 with SMTP id jn3mr39358687oeb.68.1426263611987; Fri, 13 Mar 2015 09:20:11 -0700 (PDT)
In-Reply-To <1606564.hXcnK9StvT@PointedEars.de>
References <mailman.325.1426259880.21433.python-list@python.org> <1606564.hXcnK9StvT@PointedEars.de>
Date Fri, 13 Mar 2015 11:20:11 -0500
Subject Re: Pexpect idea - but can I handle curses?
From Skip Montanaro <skip.montanaro@gmail.com>
To "Thomas 'PointedEars' Lahn" <usenet@pointedears.de>
Cc Python <python-list@python.org>
Content-Type multipart/alternative; boundary=089e0116126ef2dd3805112ddf06
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.19
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.331.1426263615.21433.python-list@python.org> (permalink)
Lines 48
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1426263615 news.xs4all.nl 2868 [2001:888:2000:d::a6]:35038
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:87373

Show key headers only | View raw


[Multipart message — attachments visible in raw view] - view raw

On Fri, Mar 13, 2015 at 10:54 AM, Thomas 'PointedEars' Lahn <
PointedEars@web.de> wrote:

> Yes, it (top(1) from procps-ng 3.3.9) does.  Either run
>
>   top -u '!root'
>
> or type “o” (for case-insensitive filter), then e.g. “!USER=root” to show
> processes started by all users except “root”.  RTFM.
>

Neither works on what I have available at work (OpenSuSE 12.2). -u only
accepts a single user name or id in my world. -o doesn't exist at all.

Thanks for the pointer though.

Skip

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Pexpect idea - but can I handle curses? Skip Montanaro <skip.montanaro@gmail.com> - 2015-03-13 10:17 -0500
  Re: Pexpect idea - but can I handle curses? Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-03-13 16:54 +0100
    Re: Pexpect idea - but can I handle curses? Skip Montanaro <skip.montanaro@gmail.com> - 2015-03-13 11:20 -0500
      Re: Pexpect idea - but can I handle curses? Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-03-13 18:03 +0100
        Re: Pexpect idea - but can I handle curses? Skip Montanaro <skip.montanaro@gmail.com> - 2015-03-13 12:25 -0500
          Re: Pexpect idea - but can I handle curses? Christian Gollwitzer <auriocus@gmx.de> - 2015-03-13 23:47 +0100
            Re: Pexpect idea - but can I handle curses? Skip Montanaro <skip.montanaro@gmail.com> - 2015-03-13 19:14 -0500
              Re: Pexpect idea - but can I handle curses? Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-03-14 20:19 +0100
                Re: Pexpect idea - but can I handle curses? Skip Montanaro <skip.montanaro@gmail.com> - 2015-03-14 20:05 -0500
                Re: Pexpect idea - but can I handle curses? Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-03-15 10:23 +0100

csiph-web