shell编程实现创建新用户和打包文件
摘要:
shell编程实现创建新用户和打包文件 1、shell编程创建新用户 #! /bin/bash `useradd $1` `echo $2 | passwd --stdin $1` 假设这个文件的名称为test.sh,则操作方式为: ./test.sh admin 123456 其中1参为用户名,2 阅读全文
posted @ 2021-03-30 16:36 黄文超 阅读(207) 评论(0) 推荐(0) 编辑