1

我怎样才能grep (或类似的东西)在文件后面有一个空行<?php

我试过没有成功:

grep -irn '(?<=.\r)\r<?php' *

我在一些帖子中读到 grep 似乎不支持多行,而应该使用pcregrep 。我怎么能pcregrep<?php一个空行之后?


Android/Sony Smartwatch:无法实例化接收器 (ClassNotFoundException)

我得到了一个带有静态广播接收器的 ClassNotFoundException。在设备上通过 eclipse 安装应用程序时会触发异常。我正在开发一个索尼智能手表扩展,所以我需要使用来自索尼 sdk 的“SmartExtensionUtils”项目。只要我在代码示例项目中工作,一切都很好。我用 Maven + Android 开始了一个新项目,现在它不再工作了!!!不知道为什么?!?我估计包裹出了点问题......

我收到以下错误:

E/AndroidRuntime(11201): java.lang.RuntimeException: Unable to instantiate receiver com.bla.move.smartwatch.sony.ExtensionReceiver: java.lang.ClassNotFoundException: com.bla.move.smartwatch.sony.ExtensionReceiver

我的广播接收器类称为 ExtensionReceiver。清单文件中的名称是相同的......

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.bla.move.smartwatch.sony"
  android:versionName="1.0" android:versionCode="1">

<uses-sdk android:minSdkVersion="7"/>

<uses-permission
    android:name="com.sonyericsson.extras.liveware.aef.EXTENSION_PERMISSION" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name="SmartWatchPreferenceActivity" android:label="@string/preference_activity_title">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        </intent-filter>
    </activity>

    <service android:name=".SmartWatchExtensionService" />

    <receiver android:name=".ExtensionReceiver">
     <intent-filter>
       .....
     </intent-filter>
    </receiver>
    ....

可能是什么问题呢?有什么建议么???我已经清理+重建(几次)!

4

1 回答 1

1

以下应该做你想要的:

pcregrep -rinM '^\n<\?php' .
于 2013-02-27T14:26:20.253 回答