6 lines
97 B
Bash
6 lines
97 B
Bash
|
#!/bin/bash
|
||
|
usermod -l aoste aosteadmin
|
||
|
usermod -d /home/aoste -m aoste
|
||
|
chfn -f aoste aoste
|
||
|
exit
|