示例#1
0
 static void Main(string[] args)
 {
     using (CommandLine command = new ExtractCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
示例#2
0
 static void Main(string[] args)
 {
     using (CommandLine command = new KillProcessCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
示例#3
0
 static void Main(string[] args)
 {
     using (CommandLine command = new ListDirectoryCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
示例#4
0
 static void Main(string[] args)
 {
     using (var command = new MoveDateCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
示例#5
0
 static void Main(string[] args)
 {
     using (var command = new PrettifyXmlCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
示例#6
0
 static void Main(string[] args)
 {
     using (CommandLine command = new RenameMediaCommandLine(args))
     {
         CommandLineBootstrap.Start(command);
     }
 }
示例#7
0
 static void Main(string[] args)
 {
     using (var cmd = new GrepCopyCommandLine(args))
     {
         CommandLineBootstrap.Start(cmd);
     }
 }
示例#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);
     }
 }