Sign in
code
/
plexi
/
9e1d00d1c4e8d60ee05382ca272f65d870c248ae
/
.
/
get-doc-contents.sh
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