You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
345 B
12 lines
345 B
#!/bin/bash
|
|
USER=""
|
|
read -p "Username: " USER
|
|
install -d repo/$USER/deposit
|
|
install -d repo/$USER/pub
|
|
install -d repo/$USER/notices/trusted
|
|
install -d repo/$USER/notices/purgatory
|
|
install -d repo/$USER/mail/new
|
|
install -d repo/$USER/mail/old
|
|
touch repo/$USER/notices/banlist
|
|
touch repo/$USER/notices/ipbanlist
|
|
touch repo/$USER/notices/trustlist
|
|
|