Created
December 28, 2023 20:44
-
-
Save karenxpn/6f2dab05a957809f167292c17c152827 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# list all folders | |
layerList=$(find -name 'flayer') | |
curDir=$(pwd) | |
echo executing $layerList | |
echo curdir is $curDir | |
# loop though each path | |
for path in $layerList | |
do | |
echo $path | |
## go to path | |
cd $path | |
bash lambdaLayer.sh | |
## go back to original dir | |
cd $curDir | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment