Merge pull request #12 from GH-TpaeFawzen/patch-1

目录文件计数.sh: $[ … ] seemed to be deprecated
master
天极 2020-12-07 16:16:45 +08:00 committed by GitHub
commit 642dd00b68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ do
echo $check
for item in $check
do
count=$[ $count + 1 ]
count=$(( $count + 1 ))
done
echo "$directory - $count"
count=0