#!/bin/sh ## copyright: B1 Systems GmbH , 2013. ## author: Christian Berendt , 2013. ## license: Apache License, Version 2.0 # Call ./tools/cleanup/remove_trailing_whitespaces.sh in the # root of openstack-manuals. files=$(find doc -name *.xml -not -name pom.xml) for file in $files; do sed -i -e 's/[[:space:]]*$//' $file done