mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 10:15:53 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| for i in $(seq 1 10)
 | |
|   do
 | |
|   rm -f "../../../alias/test-stable-$i"
 | |
|   rm -rf "../../../v0.0.$i"
 | |
|   rm -f "../../../alias/test-unstable-$i"
 | |
|   rm -rf "../../../v0.1.$i"
 | |
| done
 | |
| 
 | |
| rm -f "../../../alias/stable"
 | |
| rm -f "../../../alias/unstable"
 | |
| 
 |