10 lines
		
	
	
		
			455 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			455 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
| #!/bin/zsh
 | |
| 
 | |
| grep -B 1000 "AUTOGENERATED_TEXT" ../docs/ServiceList.md > ServiceList.md
 | |
| ./makeServices ../src/Characteristics.h  ../src/Span.h >> ServiceList.md
 | |
| mv ServiceList.md ../docs/ServiceList.md
 | |
| 
 | |
| grep -B 1000 "AUTOGENERATED_TEXT" ../docs/ServiceList_Expanded.md > ServiceList_Expanded.md
 | |
| ./makeServices -vdetailsAtt=" open" ../src/Characteristics.h  ../src/Span.h >> ServiceList_Expanded.md
 | |
| mv ServiceList_Expanded.md ../docs/ServiceList_Expanded.md
 |