We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: ./matchsubtitles.orig: line 96: ${ext,,}: bad substitution
./matchsubtitles.orig: line 96: ${ext,,}: bad substitution
Line 96: case "${ext,,}" in avi|mpg|mpeg|mkv|mp4|ogv) ;; *) continue ;; esac
case "${ext,,}" in avi|mpg|mpeg|mkv|mp4|ogv) ;; *) continue ;; esac
Correction: case "${ext}" in avi|mpg|mpeg|mkv|mp4|ogv) ;; *) continue ;; esac
case "${ext}" in avi|mpg|mpeg|mkv|mp4|ogv) ;; *) continue ;; esac
Also, running without --run only echoes first file even though with --run all files are processed.
--run
With correction, script works great! Thanks!
The text was updated successfully, but these errors were encountered:
Thank you PacoH but actually this script belongs to https://github.com/MestreLion/scripts
Sorry, something went wrong.
atanarro
No branches or pull requests
Error:
./matchsubtitles.orig: line 96: ${ext,,}: bad substitution
Line 96:
case "${ext,,}" in avi|mpg|mpeg|mkv|mp4|ogv) ;; *) continue ;; esac
Correction:
case "${ext}" in avi|mpg|mpeg|mkv|mp4|ogv) ;; *) continue ;; esac
Also, running without
--run
only echoes first file even though with--run
all files are processed.With correction, script works great! Thanks!
The text was updated successfully, but these errors were encountered: