Sign in
code
/
plexi
/
2b798263c83f999688a47ccc52b56a55bc33a554
/
.
/
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