Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     using (CommandLine command = new ExtractCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
Ejemplo n.º 2
0
 static void Main(string[] args)
 {
     using (CommandLine command = new KillProcessCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
Ejemplo n.º 3
0
 static void Main(string[] args)
 {
     using (CommandLine command = new ListDirectoryCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
Ejemplo n.º 4
0
 static void Main(string[] args)
 {
     using (var command = new MoveDateCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
Ejemplo n.º 5
0
 static void Main(string[] args)
 {
     using (var command = new PrettifyXmlCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
Ejemplo n.º 6
0
 static void Main(string[] args)
 {
     using (CommandLine command = new RenameMediaCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
Ejemplo n.º 7
0
 static void Main(string[] args)
 {
     using (var cmd = new GrepCopyCommandLine(args))
     {
         CommandLineBootstrap.Start(cmd);
     }
 }
Ejemplo n.º 8
0
 static void Main(string[] args)
 {
     //args = new string[] { "-f", @"D:\WorkSpace\wj_isfp_rm\WJ.CLIENT.AGENT\bin\Debug\netcoreapp3.1\logs\INFO\2020-12-29.log" };
     args = new string[] { @"D:\数据\Logs\log.2020-12-21" };
     using (CommandLine command = new TailCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }