#!/bin/sh
echo >&2 The author wishes to apologise for the slowness of this script...
TMP=".tmp-touch-order-$$"
for A; do
	echo >&2 "$A"
	if ln "$A" "$TMP"; then
		rm -f "$TMP"
	else
		touch "$A"
	fi
	sleep 1
done
