ログインしたユーザー、ログアウトしたユーザーを表示する

ログインしたユーザー、ログアウトしたユーザーを表示する

私の仕事:

一定の時間間隔が経過すると、システム内のユーザーに関する情報 (誰が入室し、誰が退室したか) を出力するプログラムを作成します。

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

更新: あるいは、これの方が良いかもしれません。わかりません

#!/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

関連情報