×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles

    BashScripting: Difference between revisions

    Content added Content deleted
    imported>mutante
    mNo edit summary
    imported>mutante
    mNo edit summary
     
    Line 1: Line 1:
    Scripts for the 'Bourne Again [[Shell]]'. (mostly running under [[Linux]] and [[BSD]]).

    <pre>
    <pre>


    Line 53: Line 55:
    let planets=19200; let myp=7;percent=`echo $myp/$planets | bc -l`;echo "w00t! you own $percent percent of all dg planets"
    let planets=19200; let myp=7;percent=`echo $myp/$planets | bc -l`;echo "w00t! you own $percent percent of all dg planets"



    also see [[Bash Scripts]]


    [[Category:Linux]]
    [[Category:Linux]]

    Latest revision as of 08:05, 4 March 2005

    Scripts for the 'Bourne Again Shell'. (mostly running under Linux and BSD).

    
    #/bin/bash
    
    while [ hosting_party ]
    do
        case $FOOD_STATUS
        in
            potato_chips_gone) replace_potato_chips;;
            peanuts_finished) refill_peanut_bowl;;
            pretzels_gone) open_new_pretzel_bag;;
            ...
            ...
        esac
     
    
        if [ police_on_scene ]
        then
            talk_to_nice_officers
            continue
        fi
    
        case $LIQUOR_STATUS
        in
            vodka_gone) open_new_vodka_bottle;;
            rum_gone) open_new_rum_bottle;;
            ...
            ...
        esac
    
        case $ANALYZE_GUEST_BEHAVIOR
        in
            lampshade_on_head)     echo "He's been drinking";;
            talking_to_plants)     echo "She's been smoking";;
            talking_to_martians)   echo "They're doing LSD";;
            levitating_objects)    echo "Who spiked my lemonade??";;
    
        ...
    
        ...
    
        ...
    
        esac
    
    done
    
    echo "Dude... what day is it?" 
    

    taken from: http://www.linuxgazette.com/issue53/okopnik.html

    let planets=19200; let myp=7;percent=`echo $myp/$planets | bc -l`;echo "w00t! you own $percent percent of all dg planets"


    also see Bash Scripts

    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.