2024-09-01
Linux运维
00

用python代码生成指令:

python
# pip install xpinyin from xpinyin import Pinyin ws=r"""useradd -m -s /bin/bash user11;echo "user11:12345678" | chpasswd""" p = Pinyin() words=r"张三,李四".split(",") for word in words: # 获得拼音 result1 = p.get_pinyin(word).replace("-", "") print(ws.replace("user11", result1))

得到指令:

python
useradd -m -s /bin/bash zhangsan;echo "zhangsan:12345678" | chpasswd useradd -m -s /bin/bash lisi;echo "lisi:12345678" | chpasswd

默认密码是 12345678。

参考学习:

https://www.cnblogs.com/duanxz/archive/2012/11/03/2752696.html

https://stackoverflow.com/questions/54382242/passwd-unrecognized-option-stdin-error-on-debian-when-i-run-my-created-bash

没有.bashrc怎么办:

bash
sudo cp /etc/skel/.bashrc /opt/xd/ sudo chown xd:xd /opt/xd/.bashrc
如果对你有用的话,可以打赏哦
打赏
ali pay
wechat pay

本文作者:Dong

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC。本作品采用《知识共享署名-非商业性使用 4.0 国际许可协议》进行许可。您可以在非商业用途下自由转载和修改,但必须注明出处并提供原作者链接。 许可协议。转载请注明出处!