RegEx for replacing capture group content using sed

Payment instructions from HomeAway look fishy to me

What are the words for people who cause trouble believing they know better?

What are the peak hours for public transportation in Paris?

Efficient integer floor function in C++

What can cause the front wheel to lock up when going over a small bump?

Can you really not move between grapples/shoves?

Can a user sell my software (MIT license) without modification?

Do you need type ratings for private flying?

Version 2 - print new even-length arrays from two arrays

Cause of continuous spectral lines

What do we gain with higher order logics?

Why does the Schrödinger equation work so well for the Hydrogen atom despite the relativistic boundary at the nucleus?

Is it possible to express disjunction through conjunction and implication?

Can an Eldritch Knight use Action Surge and thus Arcane Charge even when surprised?

Do any instruments not produce overtones?

Secure offsite backup, even in the case of hacker root access

Strange symbol for two functions

How were concentration and extermination camp guards recruited?

Trapping Rain Water

Last survivors from different time periods living together

siunitx error: Invalid numerical input

Movie about a boy who was born old and grew young

What's the right way to purge recursively with apt?

Required to check-in in person at international layover airport



RegEx for replacing capture group content using sed







.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















Have inputs.conf files in multiple directories that needs to match and parse each stanza and modify the index= to index=secure. This are files type in inputs.conf and also do run the script to locate the inputs file in this dir (_GWAS_pr_linux_t1/local/inputs.conf) to modify the index



[WinEventLog://Application]
checkpointInterval = 5
current_only = 0
disabled =0
start_from = oldest
index =

[WinEventLog://Security]
checkpointInterval = 5
current_only = 0
disabled =0
start_from = oldest
index =

[WinEventLog://System]
checkpointInterval = 5
current_only = 0
disabled =0
start_from = oldest
index =

[WinEventLog://ForwardedEvents]
checkpointInterval = 5
current_only = 0
disabled =0
start_from = oldest
index =

[WinEventLog://Setup]
checkpointInterval = 5
current_only = 0
disabled =0
start_from = oldest
index =

sed -i -e 's/.*(?s)(([WinEventLog://Application|Security|System|ForwardedEvents|Setup]).*?)(?:(?:rn){2}) /index=window inputs.conf


[monitor:///var/log/cron]
sourcetype=linux_secure
index=

[monitor:///var/log/secure]
sourcetype=linux_secure
index=

[monitor:///var/log/messages]
sourcetype=linux
index=

[monitor:///var/log/spooler]
sourcetype=syslog
index =

[monitor:///var/log/audit/audit.log]
sourcetype=syslog
index=

[monitor:///var/log//maillog]
sourcetype=syslog
index=

sed -i -e 's/.*(?s)(([monitor:///var/log/messages|secure]).*?)(?:(?:r*n){2})' /index=secure *linux*/local/inputs.conf









share|improve this question







New contributor



user10965163 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


























    0















    Have inputs.conf files in multiple directories that needs to match and parse each stanza and modify the index= to index=secure. This are files type in inputs.conf and also do run the script to locate the inputs file in this dir (_GWAS_pr_linux_t1/local/inputs.conf) to modify the index



    [WinEventLog://Application]
    checkpointInterval = 5
    current_only = 0
    disabled =0
    start_from = oldest
    index =

    [WinEventLog://Security]
    checkpointInterval = 5
    current_only = 0
    disabled =0
    start_from = oldest
    index =

    [WinEventLog://System]
    checkpointInterval = 5
    current_only = 0
    disabled =0
    start_from = oldest
    index =

    [WinEventLog://ForwardedEvents]
    checkpointInterval = 5
    current_only = 0
    disabled =0
    start_from = oldest
    index =

    [WinEventLog://Setup]
    checkpointInterval = 5
    current_only = 0
    disabled =0
    start_from = oldest
    index =

    sed -i -e 's/.*(?s)(([WinEventLog://Application|Security|System|ForwardedEvents|Setup]).*?)(?:(?:rn){2}) /index=window inputs.conf


    [monitor:///var/log/cron]
    sourcetype=linux_secure
    index=

    [monitor:///var/log/secure]
    sourcetype=linux_secure
    index=

    [monitor:///var/log/messages]
    sourcetype=linux
    index=

    [monitor:///var/log/spooler]
    sourcetype=syslog
    index =

    [monitor:///var/log/audit/audit.log]
    sourcetype=syslog
    index=

    [monitor:///var/log//maillog]
    sourcetype=syslog
    index=

    sed -i -e 's/.*(?s)(([monitor:///var/log/messages|secure]).*?)(?:(?:r*n){2})' /index=secure *linux*/local/inputs.conf









    share|improve this question







    New contributor



    user10965163 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      0












      0








      0








      Have inputs.conf files in multiple directories that needs to match and parse each stanza and modify the index= to index=secure. This are files type in inputs.conf and also do run the script to locate the inputs file in this dir (_GWAS_pr_linux_t1/local/inputs.conf) to modify the index



      [WinEventLog://Application]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      [WinEventLog://Security]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      [WinEventLog://System]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      [WinEventLog://ForwardedEvents]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      [WinEventLog://Setup]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      sed -i -e 's/.*(?s)(([WinEventLog://Application|Security|System|ForwardedEvents|Setup]).*?)(?:(?:rn){2}) /index=window inputs.conf


      [monitor:///var/log/cron]
      sourcetype=linux_secure
      index=

      [monitor:///var/log/secure]
      sourcetype=linux_secure
      index=

      [monitor:///var/log/messages]
      sourcetype=linux
      index=

      [monitor:///var/log/spooler]
      sourcetype=syslog
      index =

      [monitor:///var/log/audit/audit.log]
      sourcetype=syslog
      index=

      [monitor:///var/log//maillog]
      sourcetype=syslog
      index=

      sed -i -e 's/.*(?s)(([monitor:///var/log/messages|secure]).*?)(?:(?:r*n){2})' /index=secure *linux*/local/inputs.conf









      share|improve this question







      New contributor



      user10965163 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      Have inputs.conf files in multiple directories that needs to match and parse each stanza and modify the index= to index=secure. This are files type in inputs.conf and also do run the script to locate the inputs file in this dir (_GWAS_pr_linux_t1/local/inputs.conf) to modify the index



      [WinEventLog://Application]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      [WinEventLog://Security]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      [WinEventLog://System]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      [WinEventLog://ForwardedEvents]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      [WinEventLog://Setup]
      checkpointInterval = 5
      current_only = 0
      disabled =0
      start_from = oldest
      index =

      sed -i -e 's/.*(?s)(([WinEventLog://Application|Security|System|ForwardedEvents|Setup]).*?)(?:(?:rn){2}) /index=window inputs.conf


      [monitor:///var/log/cron]
      sourcetype=linux_secure
      index=

      [monitor:///var/log/secure]
      sourcetype=linux_secure
      index=

      [monitor:///var/log/messages]
      sourcetype=linux
      index=

      [monitor:///var/log/spooler]
      sourcetype=syslog
      index =

      [monitor:///var/log/audit/audit.log]
      sourcetype=syslog
      index=

      [monitor:///var/log//maillog]
      sourcetype=syslog
      index=

      sed -i -e 's/.*(?s)(([monitor:///var/log/messages|secure]).*?)(?:(?:r*n){2})' /index=secure *linux*/local/inputs.conf






      regular-expression






      share|improve this question







      New contributor



      user10965163 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share|improve this question







      New contributor



      user10965163 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share|improve this question




      share|improve this question






      New contributor



      user10965163 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      asked 31 mins ago









      user10965163user10965163

      1




      1




      New contributor



      user10965163 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




      New contributor




      user10965163 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.
























          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "106"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          user10965163 is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f522534%2fregex-for-replacing-capture-group-content-using-sed%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          user10965163 is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          user10965163 is a new contributor. Be nice, and check out our Code of Conduct.













          user10965163 is a new contributor. Be nice, and check out our Code of Conduct.












          user10965163 is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f522534%2fregex-for-replacing-capture-group-content-using-sed%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

          Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

          Ciclooctatetraenă Vezi și | Bibliografie | Meniu de navigare637866text4148569-500570979m