Files
spring-boot-rest/linux-bash/command-line-arguments/src/main/bash/users-loop.sh
Paturi Radhe Sravan 65d1231881 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