Skip to content

Instantly share code, notes, and snippets.

@cweems
Last active January 4, 2021 22:39
Show Gist options
  • Save cweems/675df81a2a023530ae2ae036b88ea525 to your computer and use it in GitHub Desktop.
Save cweems/675df81a2a023530ae2ae036b88ea525 to your computer and use it in GitHub Desktop.
Use the Twilio CLI to write all message logs to a .csv
twilio api:core:messages:list --properties="sid,from,to,body,status,direction" \
| while read -r row ; do
echo "$row" >> data.tsv
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment