add user to group sudo code example
Example 1: add user to sudoers
usermod -aG sudo username
Example 2: add user to sudoers
echo "username ALL=(ALL) NOPASSWD:ALL" | sudo tee /etc/sudoers.d/username
Example 3: show users in sudo group
grep -Po '^sudo.+:\K.*$' /etc/group