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

9 lines
86 B
Bash

#!/bin/bash
i=1;
for user in "$@"
do
echo "Username - $i: $user";
i=$((i + 1));
done