Page 1 of 1

Filebot CLI for Synology - Create sfv

Posted: 16 Jul 2024, 16:31
by Massaguana
Hello,

i have an filebot cli lizenz, can i use it for the Synology CLI ?

And than an question about creating sfv files with the command

Code: Select all

filebot -check -r "/path/to/files"
Is it possible to run this command over mutiple folders? i wood like to create an sfv file for each TV-Show folder...

Folder structure:

/volume1/Plex/TV-Serien/

than the TV-Shows like "Stargate SG1, Stargate Atlantis and many more"

Thank you for your work on filebot

Kind regards

Massaguana

Re: Filebot CLI for Synology - Create sfv

Posted: 16 Jul 2024, 16:45
by rednoah
Massaguana wrote: 16 Jul 2024, 16:31 i have an filebot cli lizenz, can i use it for the Synology CLI ?
Yes. Also, filebot -check doesn't require a license in the first place.



Massaguana wrote: 16 Jul 2024, 16:31 Is it possible to run this command over mutiple folders?
Yes, you can run any command on multiple folders:

Shell: Select all

for FOLDER in /volume1/Plex/TV-Serien/*
do
	filebot -check -r "$FOLDER"
done