代码拉取完成,页面将自动刷新
#!/bin/sh
MAX_SIZE=98*1000*1000
export TOP_PID=$$
trap 'exit 1' TERM
SolveBigFile(){
file_size=$(stat -c %s "${1}")
if [[ $file_size -gt $MAX_SIZE ]]; then
file_size=$(awk 'BEGIN{printf "%.2f\n",'$file_size'/'1000000'}')
echo "The file is too large."
echo " File Name: ${1}"
echo " File Size: ${file_size} MB"
echo "Solution: git reset HEAD <file> and rm <file>"
git reset "${1}"
rm "${1}"
return 1
else
return 0
fi
}
for file in ./*
do
if test -f "${file}"
then
SolveBigFile "${file}"
fi
if test -d "${file}"
then
ls "${file}" | while read sub_file
do
if test -d "${sub_file}"; then
echo "error: the directory has sub dir."
exit 1
fi
SolveBigFile "${file}/${sub_file}"
if [ 1 -eq $? ]; then
kill -s TERM $TOP_PID
fi
done
fi
done
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。