blob: eae74ad0af861787113351ecd19be617c2121907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
#
# $OpenBSD: follow-renames.sh,v 1.2 2012/11/03 08:41:25 ajacoutot Exp $
# test if tail follows a file descriptor across renames
#set TMPDIR to a nfs-based dir for nfs testing
DIR=$(mktemp -d)
echo DIR=${DIR}
NAME=${0##*/}
OUT=${DIR}/${NAME%%.sh}.out
echo bar > ${DIR}/bar
# retry until file appears for nfs
RET=1
while [ ${RET} == 1 ] ; do
tail -f ${DIR}/bar > ${OUT} &
RET=$?
PID=$!
sleep 1
done
mv ${DIR}/bar ${DIR}/bar2
echo 'bar2' >> ${DIR}/bar2
mv ${DIR}/bar2 ${DIR}/bar
echo 'bar' >> ${DIR}/bar
# hey nfs !
sleep 5
kill ${PID}
diff -u ${OUT} ${0%%.sh}.out || exit 1
# cleanup if okay
rm -Rf ${DIR}
|