summaryrefslogtreecommitdiff
path: root/v4l/scripts/strip-trailing-whitespaces.sh
blob: ea4f287528fcdfda6c8495a6f56827c5f8270171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# tmp dir for my files
WORK="${TMPDIR-/tmp}/${0##*/}-$$"
mkdir "$WORK" || exit 1
trap 'rm -rf "$WORK"' EXIT

for file in `find linux -type d | grep -v CVS | grep -v .cvsignore` ; do
    mkdir -p "$WORK/${file}"
done
for file in `find linux -type f | grep -v CVS | grep -v .cvsignore` ; do
	tmpfile="$WORK/${file}.$$"
	perl -ne 's/[ \t]+$//; print' < "${file}" > "${tmpfile}"
	diff -u "${file}" "${tmpfile}" | sed 		\
		-e "s|^--- ${file}|--- ${file}.orig|"	\
		-e "s|^+++ ${tmpfile}|+++ ${file}|"
	rm -f "$tmpfile"
done