79640037

Date: 2025-05-27 08:05:23
Score: 2
Natty:
Report link

You can do this with sed:
sed '/actual/{p;s/actual/future/g;}' pg_hba.conf

Once you have checked that the output is good, just add -i to write to file:
sed -i '/actual/{p;s/actual/future/g;}' pg_hba.conf

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nicolas P