- 博客(3)
- 资源 (1)
- 收藏
- 关注
原创 pg数据库迁移,pg10迁移到pg12,pg_restore恢复数据会报public 已存在
【日期】:***【问题】:***【原因】:***【如何发现】:***【如何修复】:***【总结】:***
2021-04-01 09:42:46 2776
原创 for循环批量创建用户
// 准备一个用户名称列表文件,比如user.txt,通过for循环读取read -p "Enter the users Passwd :" PASSWDfor UNAME in `cat user.txt`do id $UNAME & /dev/null if [[ $? -eq 0 ]] then echo "Already exists" else userad...
2020-04-02 08:27:04 573
原创 使用shell监测服务器是否可以正常连接
// A code blockvar foo = 'bar';// ping -c 代表发送数据包的个数 -i代表每0.2秒发一个数据包 -W 则为3秒及超时#!/bin/bashping -c 3 -i 0.2 -W 3 $1 &>/dev/nullif [[ $? -eq 0 ]]then echo "host $1 is up"else echo "host...
2020-04-01 11:06:46 381
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人