mirror of
				https://github.com/limosek/zaf.git
				synced 2025-10-31 17:47:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| . $(dirname $0)/preload.sh
 | |
| 
 | |
| help() {
 | |
| 	zaf_err "$0 seconds cmd..."
 | |
| }
 | |
| 
 | |
| seconds=$1
 | |
| shift
 | |
| [ -z "$*" ] && help
 | |
| 
 | |
| parms=$(echo $*|tr -d ' ')
 | |
| if ! zaf_fromcache "$parms"; then
 | |
| 	$@ | zaf_tocache_stdin "$parms" "$seconds"
 | |
| fi
 | |
| 
 | 
