add basic script to check convention and auto indent
This commit is contained in:
parent
2fca35a3d5
commit
187e5f5d7b
1 changed files with 14 additions and 0 deletions
14
check.sh
Executable file
14
check.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [[ $# -eq 0 ]]
|
||||
then
|
||||
echo "usage: $0 [-i] <fichier>"
|
||||
echo ""
|
||||
echo -e "-i\tindente le fichier"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
file=${@:$#}
|
||||
|
||||
[[ $1 =~ "-i" ]] && indent -linux $file
|
||||
/usr/src/linux/scripts/checkpatch.pl -f --no-tree --strict $file
|
Loading…
Reference in a new issue