mirror of
				https://github.com/Telecominfraproject/wlan-ap.git
				synced 2025-10-30 01:52:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # Write bluetooth PIN number here:
 | |
| pin=
 | |
| 
 | |
| if [ -z "$pin" ]; then
 | |
| 	msg="Set bluetooth PIN in file $0"
 | |
| 	logger -p user.err "$msg"
 | |
| 	for i in /dev/pts/* ; do
 | |
| 		[ -w $i ] && echo "$msg" > $i
 | |
| 	done
 | |
| else
 | |
| 	echo "PIN:$pin"
 | |
| fi
 | 
