mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-05 08:02:48 +00:00
17 lines
470 B
Bash
17 lines
470 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
# Description:
|
||
|
#
|
||
|
# Arguments:
|
||
|
# $1 folder with json files to process
|
||
|
# $2 folder to place the text field for all entries, for all files at $1
|
||
|
|
||
|
set +e
|
||
|
SCRIPT_DIR=$(dirname "$(realpath "$0")")
|
||
|
INPUT_FOLDER_NAME=$1
|
||
|
OUTPUT_DIR_TEXT=$2
|
||
|
echo "CLEANING FOLDER: $INPUT_FOLDER_NAME"
|
||
|
echo "INTO: $OUTPUT_DIR_TEXT"
|
||
|
mkdir -p "$OUTPUT_DIR_TEXT"
|
||
|
find "$INPUT_FOLDER_NAME" -type f -print0| xargs -0 -IX -n1 "$SCRIPT_DIR"/json-to-text.sh X "$OUTPUT_DIR_TEXT"
|