* Example for hexagonal architecture in java * BAEL-3469 - How to Pass command line arguments to bash script * Removed source code for evaluation article
9 lines
86 B
Bash
9 lines
86 B
Bash
#!/bin/bash
|
|
|
|
i=1;
|
|
for user in "$@"
|
|
do
|
|
echo "Username - $i: $user";
|
|
i=$((i + 1));
|
|
done
|