« get me outta code hell

E « acme « scripts - dotfiles - Miscellaneous configuration files of my personal use
about summary refs log tree commit diff
path: root/scripts/acme/E
blob: 7d79f0c57c1c30742941c236dcbeaf43ddb9a035 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

stat=`stat -f "%m" "$1" 2>&1`
B "$@"
while sleep 0.2s; do
    nstat=`stat -f "%m" "$1" 2>&1`
    if [ "x$stat" != "x$nstat" ]; then exit; fi
done