-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind_all_folders
executable file
·43 lines (37 loc) · 1.07 KB
/
find_all_folders
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
find_all_folders(){
# Parameters
SUCCESSOR_DIR=$1
# Functions
helpFunction(){
echo ""
echo "Usage: find_all_folders <path>"
echo ""
echo -e " -h/--help \tHelp"
echo -e " <path> \tGive the path as base dir to start searching,"
echo -e " \tabsolute or relative paths are both ok."
exit 1
}
findAllFolder(){
local SEARCH_BASE=$1
for sub in $(ls ${SEARCH_BASE}); do
if (test -d ${SEARCH_BASE}/${sub}) ; then
SUCCESSOR_DIR=$( cd ${SEARCH_BASE}/${sub} && pwd)
echo "${SEARCH_BASE}/${sub} is a folder."
findAllFolder ${SUCCESSOR_DIR}
fi
done
}
main(){
if [ $# -eq 0 ] || [ $# -gt 1 ] || [ $1 = "-h" ] || [ $1 = "--help" ] ; then
helpFunction
else
BASE_DIR=$(cd $1 && pwd)
echo -e "\033[47;30m current dir is: $BASE_DIR \033[0m"
findAllFolder ${BASE_DIR}
fi
}
# Entry
main $@
}
find_all_folders $@