10 lines
		
	
	
		
			185 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			185 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/bash -
 | 
						|
# set -x
 | 
						|
 | 
						|
if [ $# -eq 2 ]; then
 | 
						|
    test mkdir -p $1 && cd $1 && git clone $2
 | 
						|
    exit $?
 | 
						|
fi
 | 
						|
 | 
						|
echo "Usage: ./${0##*/} <workspace-directory> <path-to-customer-repository>
 |