22
0
Fork 0

typo bash

This commit is contained in:
pdiogoantunes 2017-07-20 11:59:53 +02:00
parent 4a0cffe920
commit a3ace49199
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ $ dd if=/dev/zero of=test count=10000000
~~~{.bash}
PATH_TO_WATCH='/var'; RESULT_FILE='list_max_inode.txt'; TMP=$(mktemp)
#Regarder dans le premier niveau
(for i in $(find $PATH_TO_WATCH -type d); do echo $(ls -a $i | wc -l) $i; done) | sort -n > $TMP
(for i in $(find $PATH_TO_WATCH -type d); do echo $(ls -a "$i" | wc -l) $i; done) | sort -n > $TMP
#compter dans les sous niveaux
cat $TMP | (while read line; do num=$(echo $line | awk '{ print $1 }'); path=$(echo $line | awk '{ print $2 }'); echo ${path%/*}; done) | sort | uniq | (while read line; do echo $(grep "$line" $TMP | cut -f1 -d' ' | xargs echo -n | tr -s ' ' '+' | xargs echo | bc -l) $line; done) | sort -n | tee $RESULT_FILE
rm $TMP