doufang1954 2015-08-27 08:35
浏览 99
已采纳

正则表达式排除不能与inotifywait一起使用的非golang文件

Below are the regex for filtering out all the non go files (i.e those with '.go' extension)

^([\S]*[^.][^g][^o]|[\S]*.[^g].|[\S]*..[^o]$|[\S]*[^.]..|[\S]{1,2})$

^([^.]*)($|[.]($|[\S]$|g[^o]$|[^g]o$|[^g][^o]$|([\S]+)\.($|.$|g[^o]$|[^g]o$|[^g][^o]$|[^.]{3,}$)|[^.]{3,}$))

You can test them here (click on try it 'Go' in the menu below the regex)

http://fiddle.re/80kvh6

http://fiddle.re/mhv1h6

While they seem to work correctly in go but not with inotifywait's exclude filter (which uses posix ERE format)

I am trying to setup a "watch and reload" task in my Makefile for a golang project. Also i am assuming file or folders names dont have spaces.

  • 写回答

2条回答 默认 最新

  • doumao8355 2015-08-27 12:37
    关注

    You may use

    \.[^.][^.][^.]+$|\.[^.][^o]$|\.[^g][^.]$|\.[^.]$
    

    See demo

    Or if you can group:

    \.([^.][^.][^.]+|[^.][^o]|[^g][^.]|[^.])$
    

    See demo

    See explanation:

    • \. - a literal dot
    • ([^.][^.][^.]+|[^.][^o]|[^g][^.]|[^.]) - a group of alternatives:
      • [^.][^.][^.]+ - 2 characters other than . and 1 or more characters other than ....
      • [^.][^o] - a character other than a dot and a character other than o...
      • [^g][^.] - a character other than g and a character other than a dot...
      • [^.] - a character other than a dot...
    • $ - right before the end of string.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?