<?xml version="1.0" encoding="UTF-8" ?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>a-a-p-dev at Yahoo! Groups</title>
    <link>http://tech.groups.yahoo.com/group/a-a-p-dev/</link>
    <description>A-A-P project development list (closed)</description>

    <item>
      <title>Maandoverzicht A-A-P September 2002</title>
      <pubDate>Thu, 03 Oct 2002 15:47:29 GMT</pubDate>
      <dc:creator>Bram Moolenaar</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/43</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/43</guid>
      <description>MAIN ACTIVITIES The paper on ports for the European BSD conference has been written.  It is nearly finished.  To be able to write the paper a lot of existing </description>
    </item>
    <item>
      <title>A-A-P recipe to download and compile Vim</title>
      <pubDate>Fri, 13 Sep 2002 14:08:53 GMT</pubDate>
      <dc:creator>Bram Moolenaar</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/42</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/42</guid>
      <description>To try out the functionality of A-A-P I have made a port for Vim.  It&#39;s really simple to use and update to the latest version.  See: </description>
    </item>
    <item>
      <title>Monthly overview of A-A-P: August 2002</title>
      <pubDate>Mon, 02 Sep 2002 11:09:34 GMT</pubDate>
      <dc:creator>Bram Moolenaar</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/41</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/41</guid>
      <description>MAIN ACTIVITIES A large variation of issues have been dealth with in August.  This is the result of attempting to make a 0.1 release with useful functionality </description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Tue, 20 Aug 2002 08:29:06 GMT</pubDate>
      <dc:creator>Bram Moolenaar</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/40</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/40</guid>
      <description>... Yep.  Since A-A-P needs to execute compilers, linkers and other programs, this is unavoidable.  Python doesn&#39;t offer platform-independent functions for</description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 18:57:21 GMT</pubDate>
      <dc:creator>Aschwin Marsman - aYniK Software Solutio</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/39</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/39</guid>
      <description>... A shell command or pipeline is operating system specific also, if it can&#39;t be done with Python alone, you always have multi platform support problems. What</description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 18:15:56 GMT</pubDate>
      <dc:creator>Bram Moolenaar</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/38</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/38</guid>
      <description>... It looks like os.spawn*() only executes one command, not a shell command or pipeline like &quot;cat file | sed expr &gt; tt&quot;. -- If you&#39;re sending someone</description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 14:31:32 GMT</pubDate>
      <dc:creator>Steven Knight</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/37</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/37</guid>
      <description>... os.spawn*() works fine so long as you pass os.P_WAIT as the first argument, to wait for the exit status of the command. --SK</description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 14:24:05 GMT</pubDate>
      <dc:creator>Steven Knight</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/36</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/36</guid>
      <description>... You&#39;ll need to manipulate file descriptors, either directly using os.dup()/os.fdopen() or through library methods like popen2()/popen3(). In fact, take a</description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 13:41:16 GMT</pubDate>
      <dc:creator>Bram Moolenaar</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/35</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/35</guid>
      <description>... [...] ... Yes, this currently only works on Unix anyway.  I noticed that os.system() always uses &quot;sh&quot;, even though &quot;tcsh&quot; is my default shell. That&#39;s</description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 13:40:50 GMT</pubDate>
      <dc:creator>Bram Moolenaar</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/34</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/34</guid>
      <description>... The Python documenation says os.system() doesn&#39;t return an exit value at all for MS-Windows 9x.  It looks like spawn*() doesn&#39;t do the needed things</description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 13:40:45 GMT</pubDate>
      <dc:creator>Bram Moolenaar</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/33</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/33</guid>
      <description>... Thanks, that was exactly what I needed.  The {} need to be placed differently though: { the-command; echo $? &gt; res.tmp; } 2&gt;&amp;1 | tee /tmp/@... -- </description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 12:02:39 GMT</pubDate>
      <dc:creator>Steven Knight</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/32</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/32</guid>
      <description>Hi Bram-- ... Here&#39;s a solution, from Tom Christiansen&#39;s classic &quot;Csh Programming Considered Harmful&quot; article: Consider the pipeline: A | B | C You want to</description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 11:33:32 GMT</pubDate>
      <dc:creator>Thorsten Maerz</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/31</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/31</guid>
      <description>Hi Doug, Bram, ... The 2&gt;&amp;1 and $? are only available at WinNT4/2K/XP, Win9x/Me doesnt offer them. The only alernative I know, is using CreateProcess() and</description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 11:13:05 GMT</pubDate>
      <dc:creator>Doug Kearns</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/30</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/30</guid>
      <description>... I&#39;ve only a pointer for you. Hopefully someone will have a better answer, but you should be able to make some creative use of the $? special parameter? </description>
    </item>
    <item>
      <title>Re: Question: getting the exit value of a shell command</title>
      <pubDate>Mon, 19 Aug 2002 11:05:27 GMT</pubDate>
      <dc:creator>dionn@...</dc:creator>
      <link>http://tech.groups.yahoo.com/group/a-a-p-dev/message/29</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/a-a-p-dev/message/29</guid>
      <description>... Check google groups (groups.google.com). All solutions there read something like this: { the-command; } 2&gt;&amp;1 ; echo $? &gt; res.tmp | tee /tmp/@... and then</description>
    </item>

  </channel>
</rss>
<!-- wr4.grp.scd.yahoo.com uncompressed/chunked Wed Jul  9 00:20:50 PDT 2008 -->
