mirror of
https://github.com/willianjusten/awesome-audio-visualization.git
synced 2026-01-10 05:57:56 -05:00
8 lines
151 B
Bash
8 lines
151 B
Bash
#!/usr/bin/env bash
|
|
set -e # halt script on error
|
|
|
|
for file in topics/*.md
|
|
do
|
|
bundle exec awesome_bot $file --allow-redirect --set-timeout 10
|
|
done
|