13 lines
		
	
	
		
			171 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			171 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| #
 | |
| # rsync wrapper that retries a few times on failure
 | |
| #
 | |
| 
 | |
| for i in $(seq 1 5); do
 | |
|   (
 | |
|     set -x
 | |
|     rsync "$@"
 | |
|   ) && exit 0
 | |
|   echo Retry "$i"...
 | |
| done
 |