Skip to content

Instantly share code, notes, and snippets.

@lordkhonsu
Last active February 19, 2023 23:15
Show Gist options
  • Save lordkhonsu/7eca5cbf0440589946c7 to your computer and use it in GitHub Desktop.
Save lordkhonsu/7eca5cbf0440589946c7 to your computer and use it in GitHub Desktop.
bash sed anonymize ip adresses in file

This line will replace the last octet of ipv4 adresses in a given file with a zero:

sed -i '' -e 's/\(\([0-9]\{1,3\}\.\)\{3\}\)[0-9]\{1,3\}/\10/g' <filename>
@leporel
Copy link

leporel commented Feb 19, 2023

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment