You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
259 B

#! /bin/sh
if [ -z "$1" ]; then
echo "specify the file that contains a list of files"
exit
fi
files=$(cat $1)
mkdir -p out
for item in $files ; do
dn=$(dirname $item)
mkdir -p out/$dn
src/uncrustify -f $item -c etc/ben.cfg > out/$item
done