15 lines
		
	
	
	
		
			256 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			256 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| synctime=~/.mailsync
 | |
| 
 | |
| date > $synctime
 | |
| unison -batch \
 | |
|     -ignore 'Name .git' \
 | |
|     -ignore 'Name .notmuch' \
 | |
|     -ignore 'Name procmail.log' \
 | |
|     ~/Maildir ssh://nico-vm.schottelius.org/Maildir
 | |
| date >> $synctime
 | |
| 
 | |
| cat "$synctime"
 | |
| 
 | |
| notmuch new
 |