8 lines
		
	
	
		
			81 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			81 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| BR=$1
 | |
| DEV=$2
 | |
| 
 | |
| /usr/sbin/brctl delif $BR $DEV
 | |
| /sbin/ifconfig $DEV down
 | 
