misc(shell)

来源:互联网 发布:mysql覆盖索引limit 编辑:程序博客网 时间:2024/06/07 20:17

1. find ./ -type f -name "*.*" |xargs grep "words"

2. adb shell logcat -v time > c:\temp\test.txt

3.

#include <utils/CallStack.h>
#define CALLSTACK() \
{ \
    ALOGD("CALL STACK : - %s", __FUNCTION__); \
    android::CallStack stack; \
    stack.update(); \
    String8 strtemp = stack.toString(""); \
    ALOGD("\t%s", strtemp.string()); \
}

0 0
原创粉丝点击