9 lines
		
	
	
		
			121 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			121 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
# Copyright (C) 2006 OpenWrt.org
 | 
						|
 | 
						|
{
 | 
						|
	for i in /etc/rc.d/$1*; do
 | 
						|
		$i $2 2>&1
 | 
						|
	done 
 | 
						|
} | logger -s -p 6 -t '' &
 |