01 2017 档案

摘要:http://blog.csdn.net/anddlecn/article/details/51489364 阅读全文
posted @ 2017-01-24 09:18 chencesc 阅读(244) 评论(0) 推荐(0)
摘要:get : fre = 11868 symbolrate = 27500 pls_n=0 167 CCTV 9 168 CCTV 3 169 CCTV 14 170 CCTV 8 171 CCTV 13 172 CCTV 5 173 CCTV 6 阅读全文
posted @ 2017-01-17 16:29 chencesc 阅读(170) 评论(0) 推荐(0)
摘要:grep "str" file > /dev/null if [ $? -eq 1]; then echo "no str" else echo "find str" fi 输出到/dev/null中为了不打印输出 阅读全文
posted @ 2017-01-17 09:52 chencesc 阅读(119) 评论(0) 推荐(0)
摘要:匹配 sed -n '/pattern/p' file_name |sed -n 7,12p #pattern是你要查的内容 #file_name是你要查的文件 以上实现:打印出匹配结果中的7-12行 sed -n '/pattern/{7,12p}' file_name 以上实现将文件中7到12行 阅读全文
posted @ 2017-01-16 13:00 chencesc 阅读(123) 评论(0) 推荐(0)
摘要:每行操作 cat 1.log|while read line; do NAME=`awk 'BEGIN {split("'"$line"'",arr);print arr[1]}'` ID=`awk 'BEGIN {split("'"$line"'",arr);print arr[2]}'` don 阅读全文
posted @ 2017-01-15 19:00 chencesc 阅读(113) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/yuguiyang1990/article/details/40400271 阅读全文
posted @ 2017-01-15 17:35 chencesc 阅读(116) 评论(0) 推荐(0)
摘要:语法 http://www.cnblogs.com/AP0904225/p/5967979.html 目前自己用过 一、菜单 menu "desc" endmenu 二、可配菜单 menuconfig CONFIG_STR bool "desc" depends on CONFIG_OTHER de 阅读全文
posted @ 2017-01-15 13:21 chencesc 阅读(515) 评论(0) 推荐(0)
摘要:http://www.cppblog.com/franksunny/archive/2007/11/29/37510.html http://www.tuicool.com/articles/vuymUz 阅读全文
posted @ 2017-01-04 13:59 chencesc 阅读(115) 评论(0) 推荐(0)
摘要:http://www.enet.com.cn/eschool/video/c++/ 视频 http://www.runoob.com/cplusplus/cpp-inheritance.html 书 http://www.cnblogs.com/ggjucheng/archive/2011/12/1 阅读全文
posted @ 2017-01-04 13:28 chencesc 阅读(104) 评论(0) 推荐(0)