mirror of
				https://git.davidovski.xyz/dot.git
				synced 2024-08-15 00:43:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| mkdir ~/phone
 | |
| jmtpfs ~/phone
 | |
| rsync -vr --ignore-existing ~/music/* ~/phone/SanDisk\ SD\ card/Music/
 | |
| echo "Synced files, Press enter to unmount"
 | |
| read
 | |
| umount ~/phone
 | |
| rmdir ~/phone
 | |
| 
 |