Initial commit
This commit is contained in:
commit
d3c6e29902
202 changed files with 3909 additions and 0 deletions
14
indent_script
Executable file
14
indent_script
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
# Nico Schottelius (nico-linux@schottelius.org)
|
||||
# indents like kr with a little bit more beauty look
|
||||
# 13-May-2004
|
||||
# written for the monotone project
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
echo "$0: <files to indent>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for file in $@; do
|
||||
indent -nbad -bap -ts3 -nut -sc -br -ce -cdw -cli0 -nbc -brs -i3 -lp -ppi3 -di1 -c33 -cd33 -ncdb -ci3 -cp33 -cs -d0 -di0 -l75 -bbo -nfc1 -nfca -hnl -ip0 -npcs -nprs -saf -sai -saw -nsob -nss -npsl "$file"
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue