摘要:
继续 上一篇的研究,结合 xen4.2.3 的代码分析,发现 xen4.2.3 的应用层工具库 tools 包含一个工具叫 libvchan ,其头文件描述如下:* This is a library for inter-domain communication. A standard Xen ... 阅读全文
摘要:
代码:test.sh#!/bin/basha="one,two,three,four"#要将$a分割开,可以这样:OLD_IFS="$IFS"IFS=","arr=($a)IFS="$OLD_IFS"for s in ${arr[@]}doecho "$s"doneshell编程中,经常需要将由特定... 阅读全文