-eq 等于 -ne 不等于 -gt 大于 -ge 大于等于 -lt 小于 -le 小于等于
- eq 等于 [root@oldboy50 scripts]# [ 10 -eq 20 ];echo $? 1 -ne 不等于 [root@oldboy50 scripts]# [ 10 -ne 20 ];echo $? 0 -gt 大于 [root@oldboy50 scripts]# [ 10 -gt 20 ];echo $? 1 -ge 大于等于 [root@oldboy50 scripts]# [ 10 -ge 20 ];echo $? 1 -lt 小于 [root@oldboy50 scripts]# [ 10 -lt 20 ];echo $? 0 -le 小于等于 [root@oldboy50 scripts]# [ 10 -le 20 ];echo $? 0
[root@oldboy50 scripts]# [ -d /sirliu ] && echo dir exist (前面执行成功后面命令执行) [root@oldboy50 scripts]# [ -d /sirliu ] || echo dir exist (前面执行失败后面命令执行) dir exist
最新评论
# 这只是一个创建远程登录并授权的语句、仅作为记录 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'Fit2cloud!' WITH GRANT OPTION;
当MGR集群初始化结束后,需要开启MGR集群自启动(需要有一台节点是自动开启引导) loose-group_replication_start_on_boot = ON #设置节点是否在启动时自动启动 MGR 集群 loose-group_replication_bootstrap_group = ON #设置节点是否作为初始引导节点启动集群
密码:blog.sirliu.com
本内容密码:blog.sirliu.com 最新整理的文章在这里喔:https://blog.sirliu.com/2018/11/shell_lian_xi_ti.html