https://github.com/TakehideSoh/SAF
Tip revision: d26cc9f94a4f79c046ee0cdd3a127a44f7b443b6 authored by TakehideSoh on 23 June 2023, 07:02:26 UTC
Merge pull request #2 from TakehideSoh/dev
Merge pull request #2 from TakehideSoh/dev
Tip revision: d26cc9f
normalize-white-space.sh
#!/bin/sh
cd `dirname $0`/../src
for i in *.cpp *.hpp
do
cp $i $i~ || exit 1
expand $i~ |sed -e 's, *$,,'|uniq > $i
rm -f $i~
done
