mirror of
				https://github.com/samba-team/samba.git
				synced 2025-11-04 00:23:49 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			166 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			166 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
while ( test -n "$1" ); do
 | 
						|
	if [ ! -d $1 ]; then
 | 
						|
		mkdir -p $1
 | 
						|
	fi
 | 
						|
 | 
						|
	if [ ! -d $1 ]; then
 | 
						|
		echo Failed to make directory $1
 | 
						|
		exit 1
 | 
						|
	fi
 | 
						|
 | 
						|
	shift;
 | 
						|
done
 | 
						|
 | 
						|
 | 
						|
 |