Been struggling with a rule to move any tv-shows files in Downloads folder.
First I tried the Name match, did not work.
Oh well, went to the ground I know. Shell script.
Passes shell script:
- Code: Select all
#!/bin/bash
if [[ "$1" =~ (S[0-9]{2}E[0-9]{2}$) ]]; then
exit 0
else
exit 1
fi
But this do not discover the tv-shows files.
Any help is appreciated.
