* Example for hexagonal architecture in java * BAEL-3469 - How to Pass command line arguments to bash script * Removed source code for evaluation article
11 lines
101 B
Bash
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
|