Paturi Radhe Sravan 6a41bd4bff BAEL-3469 - How to pass command line arguments to Bash Script (#8174)
* Example for hexagonal architecture in java

* BAEL-3469 - How to Pass command line arguments to bash script

* Removed source code for evaluation article
2019-11-11 08:19:37 -08:00

11 lines
101 B
Bash

#!/bin/bash
i=1;
j=$#;
while [ $i -le $j ]
do
echo "Username - $i: $1";
i=$((i + 1));
shift 1;
done