8 lines
		
	
	
		
			143 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			143 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| [ -f functions.sh ] && source functions.sh
 | |
| 
 | |
| pong="${3:-ping}"
 | |
| pong="${pong//i/o}"
 | |
| pong="${pong//I/O}"
 | |
| msg "$2" "$1: $pong"
 |