fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var rx = new Regex(@"systemctl\b.*start.*\.timer\b");
  9. var cmdline = "/bin/sh -c systemctl show -p Description dnf-restart.timer";
  10. Console.WriteLine(rx.IsMatch(cmdline));
  11. }
  12. }
  13.  
Success #stdin #stdout 0.05s 27972KB
stdin
Standard input is empty
stdout
True