0
0
Files
bigbluebutton/mod/etherpad/etherpad-export.sh

9 lines
170 B
Bash

#!/bin/sh
src="$8"
dest="$(echo $8 | sed -E -e 's/html|odt/'$7'/')"
convertTo="$7"
curl -v -F "data=@${src}" -k $COLLABORA_URL/convert-to/$convertTo > "${dest}"
exit 0