blob: 7d1fe4fd6b55e2891426c13dbe1ed86a1208d16f [file] [log] [blame]
#!/bin/sh
if test "1001" = "$1"; then
echo "This is the body of document 1001 from shell script"
elif test "1002" = "$1"; then
echo "This is the body of document 1002 from shell script"
else
echo no document with id $1 found >&2
exit 2
fi