摘要:
使用read(),write()函数,写一个简单的复制 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <pthread.h> #include <fcntl.h> int 阅读全文
摘要:
最近统计虚拟机,发现了一个神器。过输入vcenter的连接方式,连接上RVTools后,可以找到虚拟机、主机、集群、交换机、端口组以健康状态等十几个视图。 并且支持命令行脚本方式 RVTools –passthroughAuth –s vc5.robware.local -c ExportAll2x 阅读全文
摘要:
Qt 体积很大,有 1GB~3GB,官方下载通道非常慢,相信很多读者会崩溃,所以建议大家使用国内的镜像网站(较快),或者使用迅雷下载(很快)。作为 Qt 下载教程,本文会同时讲解以上三种下载方式。 Qt 官方下载(非常慢) Qt 官网有一个专门的资源下载网站,所有的开发环境和相关工具都可以从这里下载 阅读全文
摘要:
if-then语句 if command then commands commands fi if-then-else语句 if command then commands else commands fi 嵌套if if command1 then commands elif command2 t 阅读全文