wget http://people.redhat.com/~rjones/virt-what/files/virt-what-1.12.tar.gz
tar zxvf virt-what-1.12.tar.gz
cd virt-what-1.12/
./configure
make && make install
virt-what...
finfo, err := os.Stat("filename.txt")
if err != nil {
// no such file or dir
return
}
if finfo.IsDir() {
// it's a file
} else {
// it's a directory
}...
Here is a simple UUID generator, it uses version 4, Pseudo Random, as described in RFC 4122 uuid.go package uuid
import (
"encoding/hex"
"crypto/rand"
)
func GenUUID(...
评论删除后,数据将无法恢复