代码拉取完成,页面将自动刷新
package nmcli
import (
"bufio"
"io"
"io/ioutil"
"net"
"os"
"strconv"
"strings"
)
func StringIpToInt(ipstring string) int {
ipSegs := strings.Split(ipstring, ".")
var ipInt int = 0
if len(ipSegs) == 4 {
var ipSeg [4]int
ipSeg[0], _ = strconv.Atoi(ipSegs[0])
ipSeg[1], _ = strconv.Atoi(ipSegs[1])
ipSeg[2], _ = strconv.Atoi(ipSegs[2])
ipSeg[3], _ = strconv.Atoi(ipSegs[3])
ipInt, _ = net.IPv4Mask(byte(ipSeg[0]), byte(ipSeg[1]), byte(ipSeg[2]), byte(ipSeg[3])).Size()
}
return ipInt
}
// SaveFile saves file at given path
func SaveFile(filepath string, file []byte, permissions int) error {
return ioutil.WriteFile(filepath, file, os.FileMode(permissions))
}
// GetStdoutText reads out and concats string from io.Reader
func GetStdoutText(r io.Reader) (stdout []string) {
scanner := bufio.NewScanner(r)
for scanner.Scan() {
if lineOut := scanner.Text(); lineOut != "" {
stdout = append(stdout, lineOut)
}
}
return stdout
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。