Pic2Pdf

Shell 疑惑

递归访问,如何给路径标号

使用环境变量来解决(但不优雅)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
count=0
function trimDFS() {
ls "$1"| while read file
do
if [ -d "$1/$file" ]
then
let count+=1
echo "[$count] $1/$file"
trimDFS "$1/$file"
#else
#dos2unix $1"/"$file
#echo "$1""/""$file"
fi
done
}

trimDFS $1
Contents
  1. 1. Shell 疑惑
    1. 1.1. 递归访问,如何给路径标号
      1. 1.1.1. 使用环境变量来解决(但不优雅)