代码拉取完成,页面将自动刷新
同步操作将从 mirrors_SIPp/sipp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/sh
print_listing=true
err=0
TAB=`printf '\t'`
while getopts ':l' opt
do
case $opt in
l) print_listing=false;;
esac
done
list_sed='s/^/ /;s/:/: ^/'
files_with_tabs=$(
find include src '!' -name config.h \
'(' -name '*.cpp' -o -name '*.hpp' -o -name '*.c' -o -name '*.h' ')' |
xargs grep -l "$TAB")
if test -n "$files_with_tabs"; then
echo "tabs encountered in one or more source files:" >&2
for file in $files_with_tabs; do
echo " $file" >&2
if $print_listing; then
grep -n "$TAB" $file | sed -e "$list_sed" | cat -A >&2
fi
done
echo >&2
err=$((err+1))
fi
files_with_trailing_ws=$(
find include src '!' -name config.h \
'(' -name '*.cpp' -o -name '*.hpp' -o -name '*.c' -o -name '*.h' ')' |
xargs grep -l '[[:blank:][:cntrl:]]$')
if test -n "$files_with_trailing_ws"; then
echo "trailing whitespace found in one or more source files:" >&2
for file in $files_with_trailing_ws; do
echo " $files_with_trailing_ws" >&2
if $print_listing; then
grep -n '[[:blank:][:cntrl:]]$' $file |
sed -e "$list_sed" | cat -A >&2
fi
done
echo >&2
err=$((err+1))
fi
files_with_not_4_spaces=$(
find include src '!' -name config.h \
'(' -name '*.cpp' -o -name '*.hpp' -o -name '*.c' -o -name '*.h' ')' |
xargs grep -lE '^( \}| {1,3}[a-z_])')
if test -n "$files_with_not_4_spaces"; then
echo "files with non-standard indentation found:" >&2
for file in $files_with_not_4_spaces; do
echo " $file" >&2
if $print_listing; then
grep -nE '^( \}| {1,3}[a-z_])' $file |
sed -e "$list_sed" | cat -A >&2
fi
done
echo >&2
err=$((err+1))
fi
exit $err
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。