a script probably only useful to ds

This commit is contained in:
David Schleef 2001-03-13 09:35:07 +00:00
parent cbcd0f7103
commit 7e7985ead9

11
comedi_calibrate/split_dumps Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
file=$1
all=$(grep '^start dump' $file|sed 's/start dump //');
for each in $all
do
grep "^D$each:" $file|sed "s/^D$each: //" >$file.$each
done