Skip to content

Instantly share code, notes, and snippets.

View Rajan-sust's full-sized avatar
🎯
Focusing

Rajan Saha Raju Rajan-sust

🎯
Focusing
View GitHub Profile
@Rajan-sust
Rajan-sust / linux_user_creation.sh
Created May 29, 2024 05:41
Sudo non-root user creation in linux
#!/usr/bin/env bash
# ANSI color codes
GREEN='\033[0;32m'
NC='\033[0m' # No Color
RED='\033[0;31m'
username=$1
fullname=$2
password=$3