mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-01-15 10:18:15 +01:00
9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
src="$8"
|
|
dest="$(echo $8 | sed -E -e 's/html|odt/'$7'/')"
|
|
convertTo="$7"
|
|
|
|
|
|
curl -v -F "data=@${src}" -k https://collabora:9980/cool/convert-to/$convertTo > "${dest}"
|
|
|
|
exit 0 |