8 lines
80 B
Bash
8 lines
80 B
Bash
#!/bin/bash
|
|
for A in $@; do
|
|
echo Arg A: $A
|
|
done
|
|
for A; do
|
|
echo Arg B: $A
|
|
done
|