Advertisement
Guest User

Untitled

a guest
Dec 17th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. 0 */4 * * * /scripts/media/cronliminal
  2.  
  3.  
  4. #!/bin/bash
  5. find /media/harddisks/media/media/TV\ Series/ -type f \( -iname \*.avi -o -iname \*.mkv \) -and -mtime -28 > /scripts/media/processing/cronpost
  6.  
  7.  
  8. while read line
  9. do
  10.  
  11. subliminal -f -l 'nl' --cache-dir=/tmp/ -s bierdopje "$line";
  12.  
  13. dest=${line%.*}.srt
  14. if [ -f "$dest" ];
  15. then
  16. touch -d "2012-11-8" "$line"
  17. touch -d "2012-11-8" "$dest"
  18. fi
  19.  
  20. done < /scripts/media/processing/cronpost
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement