Page 1 of 1
					
				ReadyNas 516
				Posted: 09 Jul 2018, 02:41
				by aaseef021
				Is there is a way to setup a scheduled task to run the filbert script for ReadyNas 516.
I usually go through SSH to run this manually, it would be nice if I can setup something to run every 15 mins to check for new files
Currently this is what I run
Code: Select all
filebot -script fn:amc --output "/data/Videos" --action copy --conflict override -non-strict --log-file amc.log --def clean=y artwork=y excludeList=amc.txt "/data/Torrents"
Any help would greatly appreciate
 
			
					
				Re: ReadyNas 516
				Posted: 09 Jul 2018, 07:19
				by rednoah
				Yes, you can use standard Linux tools such as 
cron, which can be used to run programs 
(not just FileBot) on a schedule:
https://en.wikipedia.org/wiki/Cron
 
 ReadyNAS might have a more user-friendly system though, such as the Synology Scheduler on Synology NAS. Best to ask in the ReadyNAS forums.
 

 I'd recommend setting it up to run once a day at 4am though, and not every 15 min.
 
			
					
				Re: ReadyNas 516
				Posted: 09 Jul 2018, 15:46
				by aaseef021
				Thanks for the reply, I did create a .sh with the filebot command. How do I configure Cron to run this?
Currently this .sh file is located in \data\documents
			 
			
					
				Re: ReadyNas 516
				Posted: 10 Jul 2018, 18:30
				by aaseef021
				Thanks for the reply, I did create a .sh with the filebot command. How do I configure Cron to run this?
Currently this .sh file is located in \data\documents
			 
			
					
				Re: ReadyNas 516
				Posted: 10 Jul 2018, 21:51
				by rednoah
				Have you tried Googling for a solution yet? 
cron is a standard Linux tool, so you'll find lots and lots of help and tutorials.
On Ubuntu, it'll work like this:
https://help.ubuntu.com/community/CronHowto
On ReadyNAS, IDK. Probably very much the same.
 
			
					
				Re: ReadyNas 516
				Posted: 11 Jul 2018, 17:22
				by aaseef021
				thank you, this should help me in what I need.