Add a sample configuration file.
[inoclam.git] / format.sh
blobb35578d315a664cb694ffc8a3e0f168936c0c369
1 #!/bin/sh
2 # gatewayav - an anti-virus web service
3 # Copyright (C) 2007 Vermont Department of Taxes
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 find ./ -name \*.[ch] -exec indent -nbad -nbfda -bap -nbc -br -brs -c33 \
19 -cd33 -ncdb -ce -ci4 -cli0 -cp33 -d0 -di1 -nfc1 -nfca -i8 -ip0 -l240 \
20 -lp -npcs -npsl -nsc -nsob -nss -ts8 -cs -ut {} \;
21 find ./ -name \*.[ch]~ -exec rm {} \;