8 lines
126 B
Bash
Executable file
8 lines
126 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
for n in {{2..4},6,5,2};
|
|
do
|
|
path="./$n.bash"
|
|
echo $'### ' "$path" $' ###\n'
|
|
"$path" ./a
|
|
done
|