Spaces:
Runtime error
Runtime error
File size: 790 Bytes
4b12e15 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#!/bin/bash
for file in $(find . -type f \( -iname "*.md" -o -iname "*.txt" -o -name "*.py" -o -name "Dockerfile" \) \
-not -name "audio_mixing.py" \
-not -name "authenticate.py" \
-not -name "authentication.py" \
-not -name "caption_video.py" \
-not -name "combine_videos.py" \
-not -name "extract_keyframes.py" \
-not -name "ffmpeg_toolkit.py" \
-not -name "file_management.py" \
-not -name "image_to_video.py" \
-not -name "media_to_mp3.py" \
-not -name "transcribe_media.py" \
-not -name "transcription.py"); do
echo "File: $file" >> "NCA Toolkit API Vector Doc.txt"
echo -e "\n\n" >> "NCA Toolkit API Vector Doc.txt"
cat "$file" >> "NCA Toolkit API Vector Doc.txt"
echo -e "\n\n" >> "NCA Toolkit API Vector Doc.txt"
done |