8 lines
315 B
Bash
8 lines
315 B
Bash
#!/bin/zsh
|
|
# Ask for the application name
|
|
read "app_name?Enter the name of the application: "
|
|
# Ask for the desired UID/GID
|
|
read "desired_id?Enter the desired UID/GID for the application (e.g., 1001): "
|
|
|
|
./create-user.sh --app_name ${app_name} --id ${desired_id}
|
|
./create-files+directories.sh --app_name ${app_name} |