gitnow/scripts/record.sh
kjuulh e2be9ba59a
All checks were successful
continuous-integration/drone/push Build is passing
feat: include vhs demo
2024-09-22 14:55:41 +02:00

14 lines
220 B
Bash
Executable File

#!/usr/bin/env zsh
set -e
# Loop through each file in the folder
for file in "vhs"/*; do
# Check if it is a file (not a directory)
if [[ -f "$file" ]]; then
echo "Recording: $file"
vhs "./$file"
fi
done