×
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

    Pastebin: Difference between revisions

    Content added Content deleted
    imported>mutante
    mNo edit summary
    No edit summary
     
    (11 intermediate revisions by 6 users not shown)
    Line 1: Line 1:
    Feel free to use this as a pastebin for questions on [[IRC]] that are about scripting.
    <pre>
    #!/bin/bash


    Content below should be (has been) copied to other permanent places after problem solved.
    IPS=$(ifconfig | awk '/inet/ { print $2 }' | awk -F ":" '{ print $2 }')


    Free for new content now.
    NUMIPS=$(echo $IPS | wc -w)


    <pre>
    COUNT=1
    geist:/home/mutante# dpkg --get-selections | grep apache2
    for i in $IPS
    do
    export IP$COUNT=$i
    COUNT=`expr $COUNT + 1`
    done


    apache2 install
    # -----------------
    apache2-common install
    # I need to display all ips like this to user:
    apache2-mpm-worker install
    #
    apache2-utils install
    # 1. 123.123.123.123
    # 2. 22.22.22.22
    # 3. 32.32.32.222
    #
    # Please choose which IP address to use:
    # Prompt user here


    geist:/home/mutante# dpkg -L apache2
    /.
    /usr
    /usr/share
    /usr/share/doc
    /usr/share/doc/apache2
    /usr/share/doc/apache2/copyright
    /usr/share/doc/apache2/changelog.Debian.gz


    </pre>
    </pre>


    [[Category:Wiki]]

    [[Category:Internal]]
    <pre>
    [[Category:IRC]]
    #!/bin/bash

    # IPS=$(ifconfig | awk '/inet/ { print $2 }' | awk -F ":" '{ print $2 }')
    IPS="192.168.23.5 47.45.56.11 189.67.24.21"
    count=0

    for IP in $IPS;
    do
    IP[$count]=$IP;
    echo "Found IP $count - ${IP[count]}";
    count=`echo $count+1 | bc`
    done


    read -p "Which IP do you want to use? (number)" choice

    echo "Your choice was $choice - Setting ${IP[$choice]} "

    # ifconfig ...
    </pre>

    Latest revision as of 23:43, 22 March 2011

    Feel free to use this as a pastebin for questions on IRC that are about scripting.

    Content below should be (has been) copied to other permanent places after problem solved.

    Free for new content now.

    geist:/home/mutante# dpkg --get-selections | grep apache2
    
    apache2                                         install
    apache2-common                                  install
    apache2-mpm-worker                              install
    apache2-utils                                   install
    
    geist:/home/mutante# dpkg -L apache2
    /.
    /usr
    /usr/share
    /usr/share/doc
    /usr/share/doc/apache2
    /usr/share/doc/apache2/copyright
    /usr/share/doc/apache2/changelog.Debian.gz
    
    
    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.