美文网首页
常用命令行

常用命令行

作者: 房房1524 | 来源:发表于2023-03-20 17:12 被阅读0次

    1. grep

    1. ls | grep regular 单词搜索
    2. ls | grep ’regular‘ 文本字符串搜索
    3. $ grep 'Class 1' Students.txt 文件中搜索
    4. grep -e

    [-A num] [-B num] [-C[num]]

    1. -i 忽略大小写
    2. [-e pattern]
    3. [-f file]

    2. adb shell dumpsys activity

    3, adb shell

    adb shell am start -d "wemeet://page/external_link?scheme=https&url=https://www.qq.com/&navgitaion_none=1"

    git

    删除分支

    1. git branch | grep 'bugfix*' | xargs git branch -d

    相关文章

      网友评论

          本文标题:常用命令行

          本文链接:https://www.haomeiwen.com/subject/okxprdtx.html