13 lines
		
	
	
		
			238 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			238 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
| @echo off
 | |
| 
 | |
| set TOOLCHAIN_PATH=.\win
 | |
| set DOWNLOAD_PATH=..\logs
 | |
| 
 | |
| @REM  切换到工具链目录
 | |
| cd  %TOOLCHAIN_PATH%
 | |
| 
 | |
| .\hdc.exe file recv /mnt/hmdfs/100/account/device_view/local/files/duolun/logs %DOWNLOAD_PATH%
 | |
| 
 | |
| echo "操作完成"
 | |
| 
 | |
| pause |