astroport/zen/tools/scraping/transiscope/explore_transiscope.sh

10 lines
224 B
Bash
Executable File

#!/bin/bash
if [[ ! -f transiscope.json ]]; then
echo "Premier lancement, récupération des données, veuillez patientez ..."
./generate_transiscope.sh
fi
cat transiscope.json | jq '.[] | .name, .abstract, .geo'
exit 0