mirror of
				https://github.com/cookiengineer/audacity
				synced 2025-11-04 08:04:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			206 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			206 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
for (( i = 0; i < ${SCRIPT_INPUT_FILE_COUNT}; i++ ))
 | 
						|
do
 | 
						|
   in="$(eval echo \${SCRIPT_INPUT_FILE_${i}})"
 | 
						|
   out="$(eval echo \${SCRIPT_OUTPUT_FILE_${i}})"
 | 
						|
   cp -pPR "${in}" "${out}"
 | 
						|
done
 | 
						|
 | 
						|
exit 0
 |