Home Page
https://hudson.dev.java.net/

국내 사용자 소개 블로그
http://younghoe.info/774




Using Hudson for C++/CMake/CppUnit

http://schneide.wordpress.com/2008/09/29/using-hudson-for-ccmakecppunit/



linux ifconfig 와 비슷하게
랜카드중 UP 되어 있는 카드의 정보 출력

lanscan | awk '{ if( $4 == "UP" )  { system("ifconfig " $5); }     }'

or

netstat -ni



http://content.hccfl.edu/pollock/AUnix1/fancyio.htm

#!/bin/sh

Pause()
{
    key=""
    echo "Hit any key to continue...."
    stty -icanon
    key=`dd count=1 2>/dev/null`
    stty icanon
}

Pause;


+ Recent posts