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

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

or

netstat -ni



특정 프로세스의 메모리를 감시 할때 유용

UNIX95= ps -e -o comm,vsz,flags,pcpu,sz,etime,stime,time

bash 프로세스 지속 감시
while [ 1 ]; do UNIX95= ps -e -o comm,vsz,flags,pcpu,sz,etime,stime,time | grep bash ;sleep 1; echo "-"; done



+ Recent posts