mirror of
https://github.com/sabnzbd/sabnzbd.git
synced 2025-12-24 08:08:37 -05:00
16 lines
462 B
Batchfile
16 lines
462 B
Batchfile
@echo off
|
|
rem Example of a post processing script for SABnzbd
|
|
|
|
echo.
|
|
echo Running in directory "%~d0%~p0"
|
|
echo.
|
|
echo The first parameter (result-dir) = %1
|
|
echo The second parameter (nzb-name) = %2
|
|
echo The third parameter (nice name) = %3
|
|
echo The fourth parameter (newzbin #) = %4
|
|
echo The fifth parameter (category) = %5
|
|
echo The sixth parameter (group) = %6
|
|
echo The seventh parameter (status) = %7
|
|
echo The eight parameter (failure_url)= %8
|
|
echo.
|