To be a better coder
发布时间:2017-11-22 09:45:03
ethtool 是用于查询及设置网卡参数的命令。使用概要:ethtool ethx //查询ethx网口基本设置,其中 x 是对应网卡的编号,如eth0、eth1等等ethtool –h //显示ethtool的命令帮助(help)ethtool –i ethX //查询.........【阅读全文】
发布时间:2017-11-21 14:57:17
http://blog.csdn.net/stpeace/article/details/47089585 一般来说, 搞linux开发的人, 才会用到nm命令, 非开发的人, 应该用不到。 虽然nm很简单, 但是还是有必要写几句, 聊表心意。 nm不是ni ma的缩写, 当然, 也不是ni mei的缩写, .........【阅读全文】
发布时间:2017-11-14 16:34:14
#include "stdio.h"struct student{ int year; int month; int day;};year(int year){ if((year%4==0&&year%100==0)||(year%400==0)) return 1; else &.........【阅读全文】
发布时间:2017-11-14 10:29:44
Makefile: -include common.mkcommon.mk:VAR=$(subst $(prefix),,$(PWD))结果总是不对改为如下写法, OK!VAR=$(subst $(prefix),,$(shell pwd))结论: make -C的时候, $(PWD)的值是不变的;......【阅读全文】