12 lines
171 B
Bash
Executable File
12 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
for i in $(ls -1 | grep -E "virt_|cloud_"); do
|
|
|
|
echo terraform-docs markdown "$i > $i/README.md"
|
|
terraform-docs markdown "$i" > "$i/README.md"
|
|
|
|
done
|
|
|
|
|