会挽雕弓如满月,西北望,射天狼
全部博文(14)
发布时间:2015-06-18 17:51:00
Qmake 编写pro常用参数TEMPLATE = subdirs #编译类型-子目录CONFIG = ordered #编译次序-顺序编译SUBDIRS += ParaIO &n.........【阅读全文】
发布时间:2015-06-08 15:02:34
自己写的脚本,怕自己也看不懂了,详细描述一下#!/bin/bash 这个你懂得,是bash shell的标记,以前我不知道这个有什么用处,如果不写一样可以执行。直道有一天我把脚本放到redhat enterprise 6 的桌面,有标记的和没有标记的显示不同的图标才发现是有用处的。上网搜了一下解释如下,主要是文件游客执行权限.........【阅读全文】
发布时间:2015-05-25 11:03:42
#!/bin/bashid=$(xinput list |grep Touch|awk '{print $6}'|awk '{split($0,b,"=");print b[2]}')echo $idxinput set-prop $id 'Device Enabled' $1详解:id: 变量,用于存放触控板的设备id$(...)表示执行某段命令,取其输出= 存入变量id中 1. xinput list 输出x设备2. grep Touch 截取有Touchpad字符的.........【阅读全文】
发布时间:2015-05-13 17:21:19
1.gprof “gprof” producesan execution profile of C, Pascal, or Fortran77 programs.qprof 可以产生 由c,Pascal或Fortran77 产生的profile文件2. 用法示例eg. g++example1.cpp -pg -o example .........【阅读全文】
发布时间:2015-01-20 18:08:17
Qt qt.conf FindQt4 Qt libraries, includes, moc, uic or/and rcc NOT found!......【阅读全文】