一个毫无毅力之人的自勉
发布时间:2011-04-01 11:25:05
man: #include <stdarg.h> void va_start(va_list ap, last); type va_arg(va_list ap, type); void va_end(va_list ap); &n.........【阅读全文】
发布时间:2011-03-30 16:20:28
杀掉进程#!/bin/sh #get pppd's pid pid=`pidof pppd` #if pppd process is running if [ -n $pid ] then #kill pppd kill $pid #open the ethernet i.........【阅读全文】