File: test-downsample.sh

package info (click to toggle)
rtfilter 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, sid, stretch, trixie, wheezy
  • size: 1,792 kB
  • ctags: 544
  • sloc: sh: 11,062; ansic: 2,317; makefile: 115
file content (16 lines) | stat: -rwxr-xr-x 173 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
  
LOGFILE=testdown.log

if {
    downsample* -t 0 -c 16 \
 && downsample* -t 1 -c 16
} > $LOGFILE
then
	rm $LOGFILE
	stty echo
	exit 0
else
	stty echo
	exit 1
fi