2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

linux コマンド ユーザー一覧とユーザーグループ一覧を出力するコマンド

Last updated at Posted at 2023-01-14

概要

  • linuxにてユーザー一覧とユーザーグループ一覧を出力するコマンドを簡単にまとめる。

ユーザー一覧を出力するコマンド

cat /etc/passwd | cut -d : -f 1

ユーザーグループ一覧を出力するコマンド

cat /etc/group | cut -d : -f 1

簡単な解説

  • /etc/passwdもしくは/etc/groupのファイルの内容を呼び出し、:で区切った1フィールド目をターミナル上に出力している。
  • 区切り文字は-dオプションで設定する
  • フィールドは-fオプションで設定する
2
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?