Testing out the PPD42 Air Quality Sensor, with an MSP430 Launchpad and graphing the data with GNUplot.
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.
 
 
 
 
 
 

4 lines
155 B

#!/bin/sh
#find . -name Root -exec sed s/$1/$2/ {} >tmp ; mv tmp {} \;
for i in `find . -name Root`; do cat $i | sed s/$1/$2/ > tmp; mv tmp $i; done