mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-08 09:33:43 +00:00

Improves the documentation code. Standardizes unstructured api key Replaces misc hard coded values Replaces `azureunstructured1` with a generic value
12 lines
239 B
Bash
12 lines
239 B
Bash
#!/usr/bin/env bash
|
|
|
|
unstructured-ingest \
|
|
sftp \
|
|
--remote-url sftp://address:port/upload \
|
|
--username "$SFTP_USERNAME" \
|
|
--password "$SFTP_PASSWORD" \
|
|
--output-dir sftp-output \
|
|
--num-processes 2 \
|
|
--recursive \
|
|
--verbose
|