2023-06-07 12:20:38 +05:30

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