inplace.awk 573 B

12345678910111213141516171819
  1. # inplace --- load and invoke the inplace extension.
  2. @load "inplace"
  3. # Please set INPLACE_SUFFIX to make a backup copy. For example, you may
  4. # want to set INPLACE_SUFFIX to .bak on the command line or in a BEGIN rule.
  5. # N.B. We call inplace_end() in the BEGINFILE and END rules so that any
  6. # actions in an ENDFILE rule will be redirected as expected.
  7. BEGINFILE {
  8. if (_inplace_filename != "")
  9. inplace_end(_inplace_filename, INPLACE_SUFFIX)
  10. inplace_begin(_inplace_filename = FILENAME, INPLACE_SUFFIX)
  11. }
  12. END {
  13. inplace_end(FILENAME, INPLACE_SUFFIX)
  14. }