-
test -e /root/install.log
等价于
[ -e /root/install.log ]
查看全部 -
-d
-e
-f
查看全部 -
```sh
$ ls -alth
$ ls -i
```
查看全部 -
ln 硬连接
ln -s 软连接 ✅ --soft
```sh
# -ef => --equal --file
# 文件相等比较,检测文件是否是一个软链接 ✅
[ ./student.sh -ef ./soft ] && [ -L ./soft ] && echo yes || echo no
[ ./student.sh -ef ./hard ] && [ -L ./hard ] && echo yes || echo no
```
https://github.com/xgqfrms/linux-shell-script-programming/assets/7291672/94ce2289-e74a-4f69-a33a-54dee716ae04
![](https://img2023.cnblogs.com/blog/740516/202310/740516-20231018134307315-1561898867.png)
https://www.imooc.com/qadetail/337388
查看全部 -
inode
查看全部 -
awk
rate=$( df -h |grep "/dev/sda1" | awk '{ print $5 }' | cut -d "%" -f 1 )
查看全部 -
df -h
查看全部 -
cut -d "=" -f 2
查看全部 -
env
查看全部 -
then
查看全部 -
test
查看全部 -
and
or
!
查看全部 -
字符串相等 ==
数值/数字相等 -eq
查看全部 -
==
-z
-n
&& ||
三元运算符
查看全部 -
gt: greater than 大于
ge: greater than or equal 大于等于
lt: less than 小于
le: less than or equal 小于等于
查看全部
举报