Small shell script made for automatically creating and deleting a large amount of Linux users or groups.
Go to file
raul 56041d3eb9
Update README.md
2024-12-16 10:47:07 +01:00
LICENSE Initial commit 2024-11-12 17:06:52 +01:00
README.md Update README.md 2024-12-16 10:47:07 +01:00
autouser.sh Update docs 2024-12-16 10:45:16 +01:00
groups.csv Add source files 2024-11-12 17:09:38 +01:00
users.csv Add source files 2024-11-12 17:09:38 +01:00

README.md

autouser

Small shell script made for automatically creating and deleting a large amount of Linux users or groups by making use of .csv files.

Usage

./autouser.sh $PARAMETER file.csv

PARAMETERS
    --help || -h (Show this help prompt)
    --dry-run (Test without executing any changes)

    --create-users users.csv (Create users from a .csv file)
    --create-groups groups.csv (Create groups from a .csv file)
    --delete-users users.csv (Delete users from a .csv file)
    --delete-groups groups.csv (Delete groups from a .csv file)

    --create-user (Create user manually)
    --create-group (Create group manually)
    --delete-user (Delete user manually)
    --delete-group (Delete group manually)