Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 915 Bytes

match.markdown

File metadata and controls

34 lines (27 loc) · 915 Bytes
layout title published tags
default
match
true
reference
variables
match
strings
file editing
files promises
edit_line

Each time CFEngine matches a string, these values are assigned to a special variable context $(match.n). The fragments can be referred to in the remainder of the promise. There are two places where this makes sense. One is in pattern replacement during file editing, and the other is in searching for files.

    bundle agent testbundle
    {
    files:

      "/home/mark/tmp/(cf[23])_(.*)"
           create    => "true",
           edit_line => myedit("second $(match.2)");

      # but more specifically...

      "/home/mark/tmp/cf3_(test)"
           create    => "true",
           edit_line => myedit("second $(match.1)");
    }

match.0

A string matching the complete regular expression whether or not back-references were used in the pattern.