“Bash se houver usuário em um grupo, adicione” Respostas de código

Bash se houver usuário em um grupo, adicione

#!/bin/bash
# init
USERID="$1"
#....
/bin/egrep  -i "^${USERID}:" /etc/passwd
if [ $? -eq 0 ]; then
   echo "User $USERID exists in /etc/passwd"
else 
   echo "User $USERID does not exists in /etc/passwd"
fi
# ....
Pleasant Porpoise

Bash se houver usuário em um grupo, adicione

egrep -i "^useraccount:" /etc/passwd;
if [ $? -eq 0 ]; then
   echo "User Exists"
else
   echo "User does not exist -- Invalid Username"
fi
Pleasant Porpoise

Respostas semelhantes a “Bash se houver usuário em um grupo, adicione”

Perguntas semelhantes a “Bash se houver usuário em um grupo, adicione”

Mais respostas relacionadas para “Bash se houver usuário em um grupo, adicione” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código