mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-09-04 22:33:48 +00:00

### Description Given all the shell files that now exist in the repo, would be nice to have linting/formatting around them (in addition to the existing shellcheck which doesn't do anything to format the shell code). This PR introduces `shfmt` to both check for changes and apply formatting when the associated make targets are called.
16 lines
673 B
Bash
Executable File
16 lines
673 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This scripts creates a large number of tables inside an Airtable base.
|
|
|
|
# shellcheck disable=SC2001,SC1091
|
|
source ./scripts/airtable-test-helpers/component_ids.sh
|
|
|
|
base_data='{"description": "Table-X of the test tables for the test LARGE_BASE.", "fields": [{"description": "Name of the row","name": "Name","type": "singleLineText"}],"name": "LARGE_BASE_TABLE_X"}'
|
|
for ((i = 1; i <= 100; i++)); do
|
|
item="$(echo "$base_data" | sed "s/X/$i/g")"
|
|
curl -X POST "https://api.airtable.com/v0/meta/bases/$LARGE_BASE_BASE_ID/tables" \
|
|
-H "Authorization: Bearer $AIRTABLE_ACCESS_TOKEN_WRITE2" \
|
|
-H "Content-Type: application/json" \
|
|
--data "$item"
|
|
done
|