最赞回答 / 慕神1587613
这个选项用于从标准输入管道读入新的密码。 使用 echo 方式来重置Linux 系统用户密码:echo “新密码”|passwd --stdin 用户名
2022-09-12
最新回答 / UFO2015
```sh# ✅[ ./student.sh -ef ./soft ] && [ -L ./soft ] && echo yes || echo no[ ./student.sh -ef ./hard ] && [ -L ./hard ] && echo yes || echo no```![image](https://github.com/xgqfrms/linux-shell-script-programming/assets/7291...
2019-12-24