To copy newman html report (or in general any file) from windows machine to linux machine use below batch script.
PuTTY should be installed in the windows(source machine) and pscp.exe should be there in the installation folder and it does the job of copying files from source to destination.
REM linux machine details @echoonsetSOURCE_DIR=C:\postman\newman\ setUSERNAME=linuxadmin setPASSWORD=MyPassword#123setLINUX_MACHINE_IP=1.123.4.567setDESTINATION_DIR=/home/%USERNAME%/AutoDrive setFILE_PATTERN=*SmokeTestsNewmanReport.html* REM copy files from windows to linux pscp -pw %PASSWORD%%SOURCE_DIR%%FILE_PATTERN% \ %USERNAME%@%LINUX_MACHINE_IP%:%DESTINATION_DIR% timeout /t 15 /nobreak
exit