Files
spring-boot-rest/linux-bash/loops/src/main/bash/loop_directories.sh
Jonathan Cook 8673e3a460 BAEL-3132 - Linux Commands - Loop Through Directories/Folders (#7682)
* BAEL-3132 - Linux Commands - Loop Through Directories/Folders

* BAEL-3132 - Linux Commands - Loop Through Directories/Folders
- update pom description.

* BAEL-3132 - Linux Commands - Loop Through Directories/Folders
- Add another example using find exec.

* BAEL-3132 - Linux Commands - Loop Through Directories/Folders
2019-09-12 10:37:21 +01:00

11 lines
131 B
Bash
Executable File

#!/bin/bash
for dir in */; do
echo "$dir"
done
for file in *; do
if [ -d "$file" ]; then
echo "$file"
fi
done