kernel/scripts/Lindent

27 lines
502 B
Plaintext
Raw Permalink Normal View History

2020-11-04 10:33:20 +08:00
#!/bin/sh
2023-06-05 11:19:37 +08:00
# SPDX-License-Identifier: GPL-2.0
2020-11-04 10:33:20 +08:00
PARAM="-npro -kr -i8 -ts8 -sob -l80 -ss -ncs -cp1"
2023-06-05 11:19:37 +08:00
RES=`indent --version | cut -d' ' -f3`
2020-11-04 10:33:20 +08:00
if [ "$RES" = "" ]; then
exit 1
fi
2023-06-05 11:19:37 +08:00
V1=`echo $RES | cut -d'.' -f1`
V2=`echo $RES | cut -d'.' -f2`
V3=`echo $RES | cut -d'.' -f3`
2020-11-04 10:33:20 +08:00
if [ $V1 -gt 2 ]; then
PARAM="$PARAM -il0"
elif [ $V1 -eq 2 ]; then
if [ $V2 -gt 2 ]; then
2023-06-05 11:19:37 +08:00
PARAM="$PARAM -il0"
2020-11-04 10:33:20 +08:00
elif [ $V2 -eq 2 ]; then
if [ $V3 -ge 10 ]; then
PARAM="$PARAM -il0"
fi
fi
fi
2023-06-05 11:19:37 +08:00
2020-11-04 10:33:20 +08:00
indent $PARAM "$@"