cpe-deployments/resources/do_resources.sh

10 lines
109 B
Bash
Executable File

#!/bin/bash
for i in $(ls *.yaml)
do
name=$(echo $i | awk -F. '{print $1}')
zip $name.zip $i
done