airtable-cli
v0.1.6
Published
Interact with the Airtable API at the command line
Readme
Airtable CLI
Unofficial command line interface for Airtable.
To install:
npm install --global airtable-cliAdd a new record
Basic usage:
airtable-cli add --api-key key_YOUR_API_KEY --base appYOUR_BASE_ID --table TABLE_NAME 'Field name 1' 'Field value 1' 'Field name 2' 'Field value 2'Add an alias:
# in your bashrc/zshrc:
todo () {
airtable-cli add --api-key key_YOUR_API_KEY --base appYOUR_BASE_ID --table Tasks 'Task title' "$1"
}
# at the command prompt
todo 'eat 100 hot dogs'