15 lines
		
	
	
		
			347 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			347 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| TOOLCHAIN_PATH=./shell
 | |
| DOWNLOAD_PATH=../logs
 | |
| 
 | |
| hilog() {
 | |
|     cd $TOOLCHAIN_PATH && \
 | |
|     TIMESTAMP=$(date +%Y%m%d_%H%M%S) && \
 | |
|     ./hdc shell "tar -czvf /data/${TIMESTAMP}_log.tar.gz /data/log/" && \
 | |
|     ./hdc file recv /data/${TIMESTAMP}_log.tar.gz $DOWNLOAD_PATH && \
 | |
|     ./hdc shell "rm -rf /data/${TIMESTAMP}_log.tar.gz"
 | |
| }
 | |
| 
 | |
| hilog
 |