mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
For documentation, read contrib/sb-graph/readme.org and contrib/sb-graph/sb-graph.texinfo sb-graph requires the :sb-devel feature.
9 lines
175 B
Bash
Executable file
9 lines
175 B
Bash
Executable file
#!/bin/bash
|
|
|
|
inotifywait -e close_write,moved_to,create -m . |
|
|
while read -r directory events filename; do
|
|
if [ "$filename" = "$1" ]; then
|
|
dot -Tsvg $1 > $2
|
|
fi
|
|
done
|