欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux命令

程序员文章站 2022-06-11 17:23:00
...
1.增加用户 用户名 test01
useradd test01

2.无须交互为用户设置密码 用户名test01 密码 pass01
echo test01 : pass01 | chpasswd
echo ‘pass01’ | passwd --stdin test01

3.删除文件夹中除“test*.txt”的文件
find -type f \-! -name "test*.txt" -exec rm {} \;
rm -rf `ls | grep -v 'test*.txt'`