I'm running some additional scripts on my picoreplayer instances to pull
data from some bluetooth based sensors. This script requires pcre
support in grep.

My older picoreplayer 7.0 systems still work as they currently have grep
3.1 


Code:
--------------------
    
  tc@bluesqueeze:~$ grep --version
  grep (GNU grep) 3.1
  Copyright (C) 2017 Free Software Foundation, Inc.
  License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
  This is free software: you are free to change and redistribute it.
  There is NO WARRANTY, to the extent permitted by law.
  
  Written by Mike Haertel and others, see 
<http://git.sv.gnu.org/cgit/grep.git/tree/AUTHORS>.
  tc@bluesqueeze:~$ grep -oP 'value: \K.*'
  
  
--------------------


On my recently upgraded instance I tried installing grep from extensions
and it now lacks pcre support

Code:
--------------------
    
  tc@Homeoffice:~$ grep --version
  grep (GNU grep) 3.4
  Copyright (C) 2020 Free Software Foundation, Inc.
  License GPLv3+: GNU GPL version 3 or later 
<https://gnu.org/licenses/gpl.html>.
  This is free software: you are free to change and redistribute it.
  There is NO WARRANTY, to the extent permitted by law.
  
  Written by Mike Haertel and others; see
  <https://git.sv.gnu.org/cgit/grep.git/tree/AUTHORS>.
  tc@Homeoffice:~$ grep -oP 'value: \K.*'
  grep: Perl matching not supported in a --disable-perl-regexp build
  
  
--------------------


Has anyone else hit this issue, and do you have a recommended fix as I'd
like to upgrade my pizero environment to version 8.0.


------------------------------------------------------------------------
StevenEllis's Profile: http://forums.slimdevices.com/member.php?userid=69979
View this thread: http://forums.slimdevices.com/showthread.php?t=115237

_______________________________________________
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to