上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 74 下一页
摘要: 辅助函数 void av_dump_format(AVFormatContext *ic, int index, const char *url, int is_output); ic the context to analyze index index of the stream to dump 阅读全文
posted @ 2016-12-20 23:26 yuxi_o 阅读(1212) 评论(0) 推荐(0) 编辑
摘要: 转自:http://itlab.idcquan.com/linux/SHELL/727128.html 参考:https://linux.cn/article-8045-1.html 本文全面系统地介绍了shell脚本调试技术,包括使用echo, tee, trap等命令输出关键信息,跟踪变量的值, 阅读全文
posted @ 2016-12-20 23:14 yuxi_o 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 第一篇 1、《快速掌握PyQt5》第一章 PyQt5的起点 import sys from PyQt5.QtWidgets import QApplication, QLabel if __name__ == '__main__': app = QApplication(sys.argv) labe 阅读全文
posted @ 2016-12-20 22:53 yuxi_o 阅读(19119) 评论(0) 推荐(0) 编辑
摘要: shell中&&和||的使用方法 &&运算符 command1 && command2 本质就是逻辑与,当左边执行成功时,执行&&右边;当左边执行不成功时,因为是逻辑与,没必要执行&&右边,即知执行结果为假。 &&左边的命令(命令1)返回真(即返回0,成功被执行)后,&&右边的命令(命令2)才能够被 阅读全文
posted @ 2016-12-18 21:45 yuxi_o 阅读(850) 评论(0) 推荐(0) 编辑
摘要: 正则表达式(Regular Expression)是一种文本模式,包括普通字符(例如,a 到 z 之间的字母)和特殊字符(称为"元字符"),可以用来描述和匹配字符串的特定模式。 在文件命令中经常会使用pattern正则表达式,它是可以描述一类字符串的模式(pattern),如果一个字符串可以用某个正 阅读全文
posted @ 2016-12-18 12:50 yuxi_o 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.jobbole.com/8960/ 作者:林庆忠,1990年毕业于昆明工学院计算机软件专业,后又于1999年毕业在南京大学 完成软件工程专业硕士的学习,现供职于CNPC旗下的一个行业软件研发中心,因为在网上看了许多有经验的各路软件开发人员写的好帖,一时手痒兴起,也凑一 阅读全文
posted @ 2016-12-11 20:56 yuxi_o 阅读(179) 评论(0) 推荐(0) 编辑
摘要: system - execute a shell command #include <stdlib.h> int system (const char *command); 描述 fork()->exec()->waitpid() The system() uses fork to create a 阅读全文
posted @ 2016-12-10 13:27 yuxi_o 阅读(5465) 评论(0) 推荐(0) 编辑
摘要: popen, pclose - pipe stream to or from a process FILE *popen( const char *command, const char *type); int pclose(FILE *stream); 描述 The popen() functio 阅读全文
posted @ 2016-12-10 12:34 yuxi_o 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/objectorl/archive/2012/09/27/vmware-ubuntu-nat-static-ip-settings.html 背景在虚拟机下运行操作系统,尤其是Linux系统已经是非常常见的做法。有时你想在虚拟机下搭建一个(模拟)服 阅读全文
posted @ 2016-12-06 23:45 yuxi_o 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 原文来自http://note.youdao.com/share/web/file.html?id=236896997b6ffbaa8e0d92eacd13abbf&type=note 由于Linux目前很热门,越来越多的人在学习linux,但是买一台服务放家里来学习,实在是很浪费。那么如何解决这个 阅读全文
posted @ 2016-12-06 23:32 yuxi_o 阅读(533) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 74 下一页