#!/bin/bash

USERNAME=$1
PASSWORD=$2

# Set the password
echo "$PASSWORD" | passwd "$USERNAME" --stdin

echo "User $USERNAME password set"

