8 lines
		
	
	
		
			184 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			184 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
trap "" PIPE
 | 
						|
while read input;do
 | 
						|
	if [ ! -z "${input}" ];then
 | 
						|
		echo "\`\`\`${input}\`\`\`" | /usr/local/bin/keybase chat send --nonblock --channel $1 mempool.space
 | 
						|
	fi
 | 
						|
done
 |