Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.

How to check if a user/group exists?

How can i check with a shell command, if a user or group under linux exists?

Update:

anyone who can write a litte if-clause if user xyz exists?

thx in advance ;)

3 Antworten

Relevanz
  • vor 1 Jahrzehnt
    Beste Antwort

    cat /etc/passwd should list all of the groups.

  • vor 1 Jahrzehnt

    NAME

    id - print real and effective UIDs and GIDs

    SYNOPSIS

    id [OPTION]... [USERNAME]

    DESCRIPTION

    Print information for USERNAME, or the current user.

    -a

    ignore, for compatibility with other versions

    -g, --group

    print only the effective group ID

    -G, --groups

    print all group IDs

    -n, --name

    print a name instead of a number, for -ugG

    -r, --real

    print the real ID instead of the effective ID, with -ugG

    -u, --user

    print only the effective user ID

    --help

    display this help and exit

    --version

    output version information and exit

    Without any OPTION, print some useful set of identified information.

    SEE ALSO

    The full documentation for id is maintained as a Texinfo manual. If the info and id programs are properly installed at your site, the command

    info id

    should give you access to the complete manual.

    Quelle(n): man id
  • vor 1 Jahrzehnt

    give the following code on terminal

    cat /etc/passwd

    it will list all of the groups.

Haben Sie noch Fragen? Jetzt beantworten lassen.