Edgewall Software

Changes between Version 73 and Version 74 of Bitten Faq


Ignore:
Timestamp:
Oct 15, 2008, 9:19:39 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Bitten Faq

    v73 v74  
    5050=== Can I see some sample bitten recipes? ===
    5151
    52 See this sample for [wiki:BittenSampleRecipes Microsoft Visual Studio projects using MSBUILD] or this one for [wiki:BittenSampleJavaRecipe Java projects using JUnit and Ant].  See also [wiki:RecipeFtpDownload this recipe] which downloads and untars a file from an ftp server.
     52See this sample for [wiki:BittenSampleRecipes Microsoft Visual Studio projects using MSBUILD] or this one for [wiki:BittenSampleJavaRecipe Java projects using JUnit and Ant].  See also this recipe to [wiki:RecipeFtpDownload download and untar a file from an ftp server].
    5353
    54 
    55 === Bitten Recipe Collection ===
    56 Following are a few more real working recipe to demostrate the bitten recipe commands and their uses.
    57 ==== Automation of getting and untar hello-2.3.tar.gz from ftp.gnu.org ====
    58 {{{
    59 <!--
    60 Tested on fedora 9
    61 -->
    62 <build description="Getting files"
    63       xmlns:sh="http://bitten.cmlenz.net/tools/sh">
    64  <step id="Getting hello-2.3.tar.gz from ftp.gnu.org using wget">
    65    <sh:exec file="/usr/bin/wget" args="ftp://ftp.gnu.org/pub/gnu/hello/hello-2.3.tar.gz"/>
    66  </step>
    67  <step id="untar hello-2.3.tar.gz">
    68    <sh:exec executable="gtar" args="xzf hello-2.3.tar.gz"/>
    69  </step>
    70 </build>
    71 
    72 }}}
    7354
    7455== Bitten Slave ==