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