发布时间:2016-05-16 10:04:00
新建三个文件: helloworld.c configure.in Makefile.am 然后执行:autoscan; aclocal; autoconf; automake --add-missing; ./configure; make; ./helloworld;......【阅读全文】
发布时间:2016-05-16 10:03:06
bash: ./configure: /bin/sh^M: bad interpreter: No such file or directorydos2unix configure 把它转化成linux文件。如果没有dos2unix此命令,可用此方法:cat ./configure.sh | tr -d ‘\r’ > temp.shmv temp.sh configure.sh最好的方法是直接在linux下进行操作,如果经过了windows,则会出现权限丢失.........【阅读全文】
发布时间:2015-11-19 10:59:18
while true do /bin/sh /home/shell/monitorTcp.sh > /dev/null 2>&1 sleep 10 done ......【阅读全文】
发布时间:2015-11-17 18:52:04
usleep() 与sleep()类似,用于延迟挂起进程。进程被挂起放到ready queue。是一般情况下,延迟时间数量级是秒的时候,尽可能使用sleep()函数。且此函数已被废除,可使用nanosleep。如果延迟时间为几十毫秒(1ms = 1000us),或者更小,尽可能使用usleep()函数。这样才能最佳的利用CPU时间该usleep()功能将导.........【阅读全文】