-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject_directory.sh
executable file
·60 lines (48 loc) · 1.82 KB
/
project_directory.sh
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
redir ()
{
#tab是真正的步长计算器
tab=$tab$singletab
line=${tab%"$singletab"}"|-------"
#local比较关键,它规定了count是当前的参数列表值
local count=$#
for file in "$@"; do
thisfile=${thisfile:-$PWD}/$file
#判断当前文件是否为目录,如果是就开始递归
if [ -d "$thisfile" ]; then
#如果当前目录是分枝列表的最底层,则需进行特殊处理。
if [ $count -eq 1 ]; then
echo -e $line$file/
#将前一个|符号去掉,看看目录树就知道为什么了。
tab=${tab%"$singletab"}"\t"
redir $(ls $thisfile)
else
echo -e $line$file/
redir $(ls $thisfile)
fi
else
echo -e $line$file
fi
thisfile=${thisfile%/*}
let count=count-1
done
#这一步比较有意思,因为从递归出来的tab结尾可能是TAB也可能是$singletab,所以分成两步来去掉。
tab=${tab%"\t"}
tab=${tab%"|"}
line=${tab%"$singletab"}"|-------"
}
singletab="|\t"
userinput="$@"
if ls $userinput; then
for file in ${userinput:-.}; do
echo $file
echo '|'
if [ -d "$file" ]; then
cd $file
redir $(ls)
cd ..
fi
done
else
echo "$userinput is wrong"
fi