1. 程式人生 > >ubuntu添加賬號

ubuntu添加賬號

pre cat ron bash done nop -m -s etc

ubuntu添加賬號
useradd -d /home/test -m -s /bin/bash test

vim /etc/sudoers
test ALL=(ALL) NOPASSWD: ALL

查看所有用戶的crontab

for u in `cat /etc/passwd | cut -d":" -f1`;do crontab -l -u $u;done

ubuntu添加賬號