File: 000-cat

package info (click to toggle)
pv 1.1.4-1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 608 kB
  • ctags: 193
  • sloc: ansic: 2,290; sh: 501; makefile: 51
file content (8 lines) | stat: -rw-r--r-- 152 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
#!/bin/sh
#
# Check that data can be just passed straight through.

VALUE=`echo TESTING | $PROG 2>/dev/null` || exit 1
test "$VALUE" = "TESTING"

# EOF