10 lines
		
	
	
	
		
			114 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			114 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #! /bin/sh -ex
 | |
| echo $*
 | |
| 
 | |
| case $* in
 | |
|     *)
 | |
|         mkdir $1
 | |
|         echo $3 $4 > $1/hello
 | |
|         ;;
 | |
| esac        
 | |
| 
 |