Exibir usuários que efetuaram login e desconectaram

Exibir usuários que efetuaram login e desconectaram

Minha tarefa:

Escreva um programa que produza informações sobre os usuários do sistema após um determinado intervalo de tempo: quem entrou, quem saiu.

Tentei fazer diferente comparando dois arquivos. Não sei quão bem faço isso. commnão é muito bom aqui, eu sei. Tentei usar diff, mas a saída dela para o console é incompreensível para mim, e quando tentei diff -q, obtive apenas esta linhaFiles 1.txt and 2.txt differ

Por favor me ajude.

#!/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: ou melhor assim..idk

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

Responder1

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

informação relacionada