ログインしたユーザーとログアウトしたユーザーを表示する[閉じる]

ログインしたユーザーとログアウトしたユーザーを表示する[閉じる]

私の使命:

特定の時間間隔の後にシステムユーザーに関する情報(着信者と発信者)を出力するプログラムを作成します。

2つのファイルを比較して、別の方法でこれを試しました。私がどれほどうまくいったのかわかりません。commここが良くないことを知っています。試してみましたが、diffコンソールへの彼女の出力を理解できませんでした。試してみると、diff -qこの行だけが表示されます。Files 1.txt and 2.txt differ

助けてください。

#!/bin/bash
while (true) do
who > 1.txt
sleep 10s
who > 2.txt
(comm -13 1.txt 2.txt) > 3.txt
(comm -23 2.txt 1.txt) > 4.txt
echo IN :
cat 3.txt 
echo OUT :
sleep 10s
cat 4.txt 
echo [______________________________________________________________]
done

upd:またはこのような方が良いです。

#!/bin/bash
while (true) do
who > 1.txt
sleep 10s
who > 2.txt
(comm -13 1.txt 2.txt) > 3.txt
echo IN :
cat 3.txt 
echo OUT :
sleep 10s
who > 2.txt
(comm -23 3.txt 2.txt) > 4.txt
cat 4.txt 
echo [______________________________________________________________]
done

ベストアンサー1

#!/bin/bash
who >1.txt
sleep 10
who >2.txt
awk 'NR==FNR{a[$1];next}!($1 in a){print $1}' 1.txt 2.txt >3.txt

awk 'BEGIN{print "Below are the New users logged in now "}{print $0}' 3.txt

echo "=========================="

awk 'NR ==FNR {a[$1];next}!($1 in a){print $1}' 2.txt 1.txt > 4.txt


awk 'BEGIN{print "Below are the user who logged out now"}{print $0}' 4.txt

おすすめ記事