#!/bin/bash
limit=10
if  [ "$#" -eq  "0" ]
then
	limit=10
else
	limit=$1
fi
python3 /srv/datalogger_ecom/database/models.py -gd True --limit $limit
 