Im trying to make a find regex script so i automaticly can copy files to specific directory.
find . -regex "*test.*s01e([0-9][0-9]).*" -exec cp {} /storage/tv/test/s01/ \;
Made this script, dont get any errors but it doesnt list anything. Also tried to just run the command in terminal and still the command runs without error but doesnt list anything. Is there something wrong i have done or is this something that's not easy to get to work?