Skip to content

Instantly share code, notes, and snippets.

@fabienhinault
Created December 20, 2017 12:18
Show Gist options
  • Save fabienhinault/bbd0d49083d1a7a64c58d6463bde74ca to your computer and use it in GitHub Desktop.
Save fabienhinault/bbd0d49083d1a7a64c58d6463bde74ca to your computer and use it in GitHub Desktop.
show a json file in a firefox tab
#!/bin/bash
mkdir -p /tmp/showff
tmpfile=$(mktemp /tmp/showff/XXXXXX.json)
cat - > $tmpfile
firefox -new-tab $tmpfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment