動画ファイルに字幕が関連付けられているかどうかを確認して移動するために定期的に実行するシェル スクリプトを作成したい
このような種類:
sourceDir = "/volume/mount/Videos";
destinationDir = "/volume/mount/VideosWithSubtitles";
validExtensions = ["avi", "mkv", "mp4"]
for every file in sourceDir that has a "validExtension"
check if a file with the same name but with a ".srt" extension exists
if it does, move both of them to "destinationDir"
私はシェルスクリプトに慣れていないので、助けていただければ幸いです。