1#!/bin/bash 2 3for e in /sys/bus/coresight/devices/etm*/; do 4 echo "Strobing period for $e is $((`cat $e/strobe_period`))" 5 echo "Strobing window for $e is $((`cat $e/strobe_window`))" 6done 7