进程间通信(IPC)的方式有很多种,常用方式有管道pipe、信号signal、映射mmap、本地套接字socket等。这些方式各有优势,其中管道的方式最为简单。本篇文章主要记录管道在进程间通信的使用,在编程实例中还有dup、exec函数族的使用。 1 管道的介绍在使用 Linux 命令的时,经常会借 …
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
Run server
1 | $ hexo server |
More info: Server
Generate static files
1 | $ hexo generate |
More info: Generating
Deploy to remote sites
1 | $ hexo deploy |
More info: Deployment