How to check which groups exist in Linux

WBOY
Release: 2022-01-04 10:48:11
Original
10042 people have browsed it

In Linux, you can use the cat command to check which groups there are. This command is used to connect files and print to the standard output device. The syntax is "cat /etc/group"; "/ect/group" file It is the user group configuration file, that is, all the information of the user group is stored in this file.

How to check which groups exist in Linux

#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.

How to check which groups are there in Linux

The cat (full English spelling: concatenate) command is used to connect files and print to the standard output device .

The syntax is:

cat [-AbeEnstTuv] [--help] [--version] fileName
Copy after login

/ect/group file is the user group configuration file, that is, all the information of the user group is stored in this file.

Parameter description:

  • -n or --number: Number all output lines starting from 1.

  • -b or --number-nonblank: Similar to -n, except that blank lines are not numbered.

  • -s or --squeeze-blank: When encountering more than two consecutive blank lines, replace them with one blank line.

  • -v or --show-nonprinting: Use the ^ and M- symbols except LFD and TAB.

  • -E or --show-ends : Display $ at the end of each line.

  • -T or --show-tabs: Display TAB characters as ^I.

  • -A, --show-all: Equivalent to -vET.

  • -e: Equivalent to the "-vE" option;

  • -t: Equivalent to the "-vT" option;

The example is as follows:

How to check which groups exist in Linux

Output result:

How to check which groups exist in Linux

Related Recommended: "Linux Video Tutorial"

The above is the detailed content of How to check which groups exist in Linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!