シェルを用いてAndroidのインテントをadbから投げるにはどうすればよいでしょうか。

adbからインテントをBroadcastしたいのですが、am start以下の書き方がわからないため、ご教示いただけませんでしょうか。

#!/bin/bash -v
adb shell
am start -hoge

アプリでインテントを投げている部分の抜粋

        @Override
        public void onClick(View v) {
            if (btn1.isChecked()) {
            Intent sendIntent = new Intent(getApplicationContext(), MeasurementMainReceiver.class);
            sendIntent.setAction(Constants.ACTION_STAET_MEASUREMENT);
            sendBroadcast(sendIntent);

Manifestファイル

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.hoge.tools"
android:versionCode="6"
android:versionName="1.0.0" >


<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="jp.hoge.tools.MainActivity"
        android:label="@string/app_name"
        android:launchMode="singleInstance" >


        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

    <receiver
        android:name="jp.hoge.tools.measure.MeasurementMainReceiver" >
    </receiver>

    <service
        android:name="jp.hoge.tools.measure.MeasurementService"
        >
    </service>
    <service
        android:name="jp.hoge.tools.measure.measure1.Measure1Service"
        >
    </service>
    <service
        android:name="jp.hoge.tools.measure.measure2.Measure2Service"
        >
    </service>
    <service
        android:name="jp.hoge.tools.measure.log.MeasureLogService"
        >
    </service>

  </application>

  </manifest>