9 lines
152 B
Bash
9 lines
152 B
Bash
#!/bin/sh
|
|
#
|
|
# Check that data can be just passed straight through.
|
|
|
|
VALUE=`echo TESTING | $PROG 2>/dev/null` || exit 1
|
|
test "$VALUE" = "TESTING"
|
|
|
|
# EOF
|