내 임무:
특정 시간 간격 후에 시스템에 있는 사용자에 대한 정보(들어온 사람, 떠난 사람)를 출력하는 프로그램을 작성하세요.
두 파일을 비교하여 다르게 해보려고 했습니다. 내가 얼마나 잘하는지 모르겠어요. 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: 아니면 이렇게 하는 게 낫지..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
답변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