9 lines
		
	
	
	
		
			166 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			166 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| REQ=GET
 | |
| URL=http://localhost:5000/sensor/get
 | |
| 
 | |
| echo "$REQ $URL"
 | |
| read -p "continue?" -n 1 foo
 | |
| curl \
 | |
|   -X $REQ $URL \
 | |
|   -H "Content-Type: application/json"
 |