RHEL 8.7 /etc/passwdファイルからユーザー一覧を出力する
環境
# cat /etc/redhat-release
Red Hat Enterprise Linux release 8.7 (Ootpa)
操作方法1
コマンド
cut -d: -f1 /etc/passwd
実行結果
# cut -d: -f1 /etc/passwd
root
bin
略
操作方法2
# vi .bashrc
コマンドを追記します
alias libusers="cut -d: -f1 /etc/passwd"
修正後ファイル
# .bashrc alias listusers="cut -d: -f1 /etc/passwd" # User specific aliases and functions alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi
ファイルを反映します
# source .bashrc
# listusers
root
bin
daemon
略