7 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env sh
 | 
						|
 | 
						|
set -e  # Abort on failure
 | 
						|
set -x
 | 
						|
 | 
						|
# Run the check from the web-server itself to avoid network delays.
 | 
						|
ssh debian@hickory.sfconservancy.org "linkchecker https://sfconservancy.org/"
 |