westdc-zf1/tools/datafile-generate.sh

32 lines
669 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
data_dir=$1
if [ $# -ne 1 ]
then
echo "Usage: $0 {DATA_DIR}"
exit 1
fi
rm dataset.txt
cat_txt=$$
find $data_dir | grep uuid.txt > $cat_txt
cat $cat_txt | while read oneline;
do
echo $oneline >> dataset.txt;
cat "$oneline" >> dataset.txt;
uuid=`cat "$oneline"`;
if [ -e $uuid.txt ]
then
echo "do nothing! uuid重复或后面有空格$uuid"
else
find -L "${oneline%uuid.txt}" -exec du -b -s {} \; -exec ./dir_output.sh "{}" \; >$uuid.txt
echo $uuid
sed -i '/uuid.txt$/,/file$/d' $uuid.txt
fi
echo -e \\n >> dataset.txt;
done
# 删除空行
sed -i '/^$/d' dataset.txt
rm $cat_txt
sed -i 's/uuid.txt//' dataset.txt
sed -i 's/^ //' dataset.txt
exit 0