0
0

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 3 years have passed since last update.

ユーザーアカウント(/etc/paswd)のカラム1を取得する 〜Linux シェルスクリプト〜

Last updated at Posted at 2021-03-14

初めましてshoです。
シェルスクリプトの学習、練習メモです。

内容「ユーザーアカウント(/etc/paswd)のカラム1を取得する」
カラムの1だけ表示させます。

(※学習記録やメモ書き目的で始めました。ほぼ初学者レベルなので理解が浅いところや誤りがあるかと思いますがよろしくお願いします。またアドバイス等コメントいただけるとすっごく嬉しいです。)

#cutコマンド
cutはテキストファイルを横方向に分割して、必要な項目を抜き出せるコマンド。

#使用オプション
-d → 区切り文字を指定
-f → 必要な項目を項目数で指定

#スクリプト


#!/bin/sh

cut -d: -f1 /etc/passwd

#実行結果

root
bin
daemon
adm
lp
sync
shutdown
halt
mail
operator
games
ftp
nobody
systemd-network
dbus
polkitd
sshd
postfix
chrony
penguin1
guest1
guest2
apache
mysql

シェルスクリプトというかコマンド練習ですね。

以上です!!

##参照サイト

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?