mayaculpa / hapi

Hydro­ponic Automa­tion Plat­form Ini­tia­tive (HAPI)
GNU General Public License v3.0
68 stars 21 forks source link

src/dumb_module/arduino/hapinode/*: Trimmed trailing whitespace (again). #105

Closed james-prior closed 7 years ago

james-prior commented 7 years ago

Used following command to do it.

grep -lr '  *$' * | while read f; do g=`mktemp`; sed -e 's/  *$//' <"$f" >"$g"; diff "$f" "$g";mv -f "$g" "$f";done