1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2025-04-04 10:28:04 -05:00

fix: Ignore subdirectories in folderify

This commit is contained in:
Sayantan Santra 2025-03-02 15:53:09 -06:00
parent d84cd484d9
commit e422459f6c
Signed by: SinTan1729
GPG key ID: 0538DD402EA50898

View file

@ -14,14 +14,14 @@ process_file () {
else
mkdir "$without_ext"
mv "$filename" "$without_ext/"
find . -type f -regextype posix-egrep -iregex "\./$without_ext(\.[a-z]{2,3})?\.srt" \
find . -maxdepth 1 -type f -regextype posix-egrep -iregex "\./$without_ext(\.[a-z]{2,3})?\.srt" \
-exec mv "{}" "$without_ext/" \;
fi
}
counter=0
find . -type f -regextype posix-egrep -iregex '.*\.(mkv|mp4)$' -print0 | while IFS= read -r -d '' file; do
find . -maxdepth 1 -type f -regextype posix-egrep -iregex '.*\.(mkv|mp4)$' -print0 | while IFS= read -r -d '' file; do
process_file
done