18 lines
		
	
	
		
			163 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			163 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #!syntax bash
 | |
| 
 | |
| err() {
 | |
| 	printf '%s\n' "$*" >&2
 | |
| }
 | |
| 
 | |
| msg() {
 | |
| 	printf '%s\n' "$*"
 | |
| }
 | |
| 
 | |
| set_default() {
 | |
| 	declare -n _vref=$1
 | |
| 
 | |
| 	if ! [[ "$_vref" ]]; then
 | |
| 		_vref=$2
 | |
| 	fi
 | |
| }
 |