~$ 存档

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

06 2021 档案

摘要:ansible 简介 ansible 是什么? ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet、chef、func、fabric)的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能。 ansible是基于 paramiko 开发的,并且基于模 阅读全文
posted @ 2021-06-29 13:42 LuoTian 阅读(210) 评论(0) 推荐(0)

摘要:在shell中常用的特殊符号罗列如下:# ; ;; . , / \ 'string'| ! $ ${} $? $$ $* "string"* ** ? : ^ $# $@ `command`{} [] [[]] () (()) || && {xx,yy,zz,...}~ ~+ ~- & \<...\ 阅读全文
posted @ 2021-06-18 15:34 LuoTian 阅读(454) 评论(0) 推荐(0)

摘要:package main import ( "bytes" "crypto/sha256" "encoding/binary" "fmt" "log" "strconv" "time" ) type Block struct { Height int64 PrevBlockHash []byte D 阅读全文
posted @ 2021-06-15 14:04 LuoTian 阅读(638) 评论(0) 推荐(0)