Quote:
Originally Posted by Elculion2
No wonder Linux sucks, bcus only suckers use it. Windows rules!!!
|
Don't be a tit!
Anyway...to start you off....create the users....should be able to work out the rest
Create a file called users
Code:
neil
bananaman
biirrddmmannn
krusty
Create the users
Code:
#!/bin/sh
for i in `more users`
do
echo $i
useradd $i
done