mirror of
				https://github.com/deater/dos33fsprogs.git
				synced 2025-10-31 09:16:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			322 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			322 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| echo "Testing large files..."
 | |
| 
 | |
| cp empty.dsk test.dsk
 | |
| 
 | |
| dd if=/dev/urandom of=blah.out bs=1k count=116
 | |
| 
 | |
| ../dos33 ./test.dsk catalog
 | |
| 
 | |
| ../dos33 ./test.dsk save r blah.out big.1
 | |
| ../dos33 ./test.dsk save r blah.out big.2
 | |
| 
 | |
| ../dos33 ./test.dsk load big.1 blah2.out
 | |
| 
 | |
| diff blah.out blah2.out
 | |
| 
 | |
| ../dos33 ./test.dsk catalog
 |