Edgewall Software

Changes between Version 50 and Version 51 of Bitten Faq


Ignore:
Timestamp:
Sep 24, 2008, 9:37:48 PM (16 years ago)
Author:
tj_yang@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Bitten Faq

    v50 v51  
    8787== Bitten Recipe Collection ==
    8888Following are a few more real working recipe to demostrate the bitten recipe commands and their uses.
    89 === Compile a hello world program from ftp.gnu.org ===
     89=== Automation of getting and untar hello-2.3.tar.gz from ftp.gnu.org ===
    9090{{{
    9191<!--
     
    9494<build description="Building System"
    9595      xmlns:sh="http://bitten.cmlenz.net/tools/sh">
    96  <step id="Quietly getting hello-2.3.tar.gz from ftp.gnu.org using wget">
    97    <sh:exec file="/usr/bin/wget" args="-q ftp://ftp.gnu.org/pub/gnu/hello/hello-2\
     96 <step id="Getting hello-2.3.tar.gz from ftp.gnu.org using wget">
     97   <sh:exec file="/usr/bin/wget" args="ftp://ftp.gnu.org/pub/gnu/hello/hello-2\
    9898.3.tar.gz"/>
    9999 </step>
    100  <step id="Quitely untar hello-2.3.tar.gz">
     100 <step id="untar hello-2.3.tar.gz">
    101101   <sh:exec executable="gtar" args="xzf hello-2.3.tar.gz"/>
    102102 </step>