* Example for hexagonal architecture in java * BAEL-3469 - How to Pass command line arguments to bash script * Removed source code for evaluation article
		
			
				
	
	
		
			6 lines
		
	
	
		
			74 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			74 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| echo "Username: $1"; 
 | |
| echo "Age: $2"; 
 | |
| echo "Full Name: $3";
 |