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.
13 lines
316 B
13 lines
316 B
14 years ago
|
|
||
|
DIRS="./*.cpp ./*.hpp ./kernels/*.cpp ./kernels/*.hpp ./attractors/*.stf"
|
||
|
echo "This program will delete all trailing whitespaces and will replace spaces with tabs"
|
||
|
|
||
|
for file in ${DIRS}
|
||
|
do
|
||
|
echo "yay ${file}"
|
||
|
unexpand -t 4 ${file} | sed 's/[ \t]*$//' > ${file}.new
|
||
|
cat ${file}.new > ${file}
|
||
|
rm ${file}.new
|
||
|
done
|
||
|
|