1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/bin/bash set -e DOC_DIR="/tmp/plotpy/doc_tests" DOC_TESTS=" contour curve histogram legend plot shapes surface text " for t in $DOC_TESTS; do cp -v $DOC_DIR/"doc_${t}.svg" ./figures/ done