Skip to content

Commit

Permalink
iuse only 4 frequencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TLeconte committed Dec 31, 2018
1 parent 663301e commit 6fcb409
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scan.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#/bin/bash

let fm=130
while [ "$fm" -lt 137 ] ; do
let fm=136
let f0=0; let f1=125 ; let f2=250 ; let f3=375 ; let f4=500 ; let f5=625 ; let f6=750 ; let f7=875
echo $fm
while [ "$f0" -lt 125 ] ; do
echo $f0
./vdlm2dec -g 15 -l scanlog $fm.$f0 $fm.$f1 $fm.$f2 $fm.$f3 $fm.$f4 $fm.$f5 $fm.$f6 $fm.$f7 &
sleep 500
vdlm2dec -l scanlog $fm.$f0 $fm.$f2 $fm.$f4 $fm.$f6 &
sleep 300
killall vdlm2dec
vdlm2dec -l scanlog $fm.$f1 $fm.$f3 $fm.$f5 $fm.$f7 &
sleep 300
killall vdlm2dec
let f0=f0+25;let f1=f1+25;let f2=f2+25;let f3=f3+25; f4=f4+25;let f5=f5+25;let f6=f6+25;let f7=f7+25;
done
let fm=fm+1;
done
grep -e "(F:" scanlog | cut -c 8-14 | sort | uniq -c
grep -e "(F:" scanlog | cut -c 8-14 | sort | uniq -c > resscan

0 comments on commit 6fcb409

Please sign in to comment.