7 lines
168 B
Bash
Executable file
7 lines
168 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eou pipefail
|
|
|
|
cd -- "$( dirname -- "${BASH_SOURCE[0]}" )"
|
|
m4 all.m4 > test-output/all.dot
|
|
dot -Tpdf test-output/all.dot > test-output/all.pdf
|