最赞回答 / 慕神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
最新回答 / 0文弱书生0
#!/bin/bashread -p "number1: " num1read -p "number2: " num2read -p "ope: " opeif [ -n "$num1" -a -n "$num2" -a -n "$ope" ] then test1=$(echo $num1 |sed 's/[0-9]//g') test2=$(echo $num2 |sed 's/[0-9]//g') else ...
2019-08-23