JAVA-20220 Added suffix -modules to aws-lambda, clojure, terraform, linux-bash

This commit is contained in:
Dhawal Kapil
2023-04-12 08:27:20 +05:30
parent 30674d2186
commit 58755953cc
95 changed files with 12 additions and 5 deletions
@@ -0,0 +1,9 @@
#!/bin/bash
find . -maxdepth 1 -mindepth 1 -type d -printf '%f\n'
find . -maxdepth 1 -mindepth 1 -type d | while read dir; do
echo "$dir"
done
find . -maxdepth 1 -type d -exec echo {} \;
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
for dir in */; do
echo "$dir"
done
for file in *; do
if [ -d "$file" ]; then
echo "$file"
fi
done