Skip to content

Instantly share code, notes, and snippets.

@muth0mi
Last active September 22, 2019 12:05
Show Gist options
  • Select an option

  • Save muth0mi/50ed9cd244e1eb4817f881a2d770a92a to your computer and use it in GitHub Desktop.

Select an option

Save muth0mi/50ed9cd244e1eb4817f881a2d770a92a to your computer and use it in GitHub Desktop.
Fix the error "awk: cmd. line:7: warning: regexp escape sequence `\"' is not a known regexp operator"

Fix error in screenfetch

Error Details:

The line below displayed on executing screenfetch

awk: cmd. line:7: warning: regexp escape sequence `"' is not a known regexp operator

Fix:

  • Open the file /bin/screenfetch with root permissions
  • Search for the line 'gsub(/"/,"",de)'
  • Replace it with 'gsub(/"/,"",de)'.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment