---
title: "View AWS event bridge rules with visidata"
description: "Reading eventbridge rules from the command line can be a total drag, pipe it into visidata to make it a breeze."
date: 2022-02-15
published: false
tags:
  - python
  - cli
  - bash
template: til
---


Reading eventbridge rules from the command line can be a total drag, pipe it
into visidata to make it a breeze.

I just love when I start thinking through how to parse a bunch of json at the
command line, maybe building out my own custom cli, then the solution is as
simple as piping it into visidata.  Which is a fantastic tui application that
had a ton of vim-like keybindings and data features.


``` python
alias awsevents = aws events list-rules | visidata -f json
```
