摘要: shell中数组的下标默认是从0开始的 1.将字符串放在数组中,获取其长度 #!/bin/bashstr="a b --n d"array=($str)length=${#array[@]}echo $length for ((i=0; i<$length; i++))do echo ${array 阅读全文
posted @ 2020-08-13 20:42 梦想俱乐部 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 1:.首先查看我们的根分区大小是多少 df -h 文件系统 类型 容量 已用 可用 已用% 挂载点 /dev/mapper/centos-root xfs 18G 1.1G 17G 6% / devtmpfs devtmpfs 479M 0 479M 0% /dev tmpfs tmpfs 489M 阅读全文
posted @ 2020-08-05 11:54 梦想俱乐部 阅读(802) 评论(0) 推荐(0) 编辑