/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera

« back to all changes in this revision

Viewing changes to scripts/extract.sh

  • Committer: Suren A. Chilingaryan
  • Date: 2018-08-30 13:55:03 UTC
  • Revision ID: csa@suren.me-20180830135503-9yzi2t3izttjhuav
Add a bit info about Desy camera and a pair of debugging scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/bash
 
2
 
 
3
[ -n "$1" ] || exit
 
4
frame=$1
 
5
 
 
6
list=$(./list.sh $1 | sort -n -k 3)
 
7
echo -n > "frame$frame.raw"
 
8
IFS=$'\n' 
 
9
for name in $list; do
 
10
#    echo "$name"
 
11
    cat "$name" >> "frame$frame.raw"
 
12
done