HOME/bin/file_change_monitor

8 lines
147 B
Text
Raw Normal View History

2022-06-26 20:20:31 +02:00
#!/bin/sh
[ "$1x" = "x" ] && exit 1
while : ; do mv -f /tmp/fcm-1 /tmp/fcm-2; cp $1 /tmp/fcm-1; diff -U 0 /tmp/fcm-1 /tmp/fcm-2; sleep 1; done