if you have jmeter tests in you project and bothered of running them all the time manually you can run following command:

    jmeter -n -t file.jmx -l "report.csv"

this will run jmeter test in background and save report in csv format.

#!/usr/bin/env bash

for file in test/*.jmx; do
    [ -e "$file" ] || continue
    jmeter -n -t "$file" -l "reports/report.csv" |  grep -E --color '\d{1,2}\.\d{1,2}|$'
done