You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
655 B

5 years ago
# chpasswd
7 years ago
6 years ago
## 说明
7 years ago
5 years ago
**chpasswd命令** 是批量更新用户口令的工具,是把一个文件内容重新定向添加到`/etc/shadow`中
7 years ago
5 years ago
## 选项
7 years ago
5 years ago
```markdown
-c, --crypt-method 方法 加密方法(NONE DES MD5 SHA256 SHA512 中的一个)
-e, --encrypted 输入的密码已经加密的密文
-m, --md5 使用 MD5 算法加密明文密码
-R, --root CHROOT_DIR chroot 到的目录
-s, --sha-rounds SHA* 加密算法中的 SHA 旁边的数字
7 years ago
```
5 years ago
## 实例
7 years ago
5 years ago
```bash
chpasswd < user.txt # username:passworduser.txt
7 years ago
```