static void Main(string[] args) { using (CommandLine command = new ExtractCommandLine(args)) { CommandLineBootstrap.Start(command); } }
static void Main(string[] args) { using (CommandLine command = new KillProcessCommandLine(args)) { CommandLineBootstrap.Start(command); } }
static void Main(string[] args) { using (CommandLine command = new ListDirectoryCommandLine(args)) { CommandLineBootstrap.Start(command); } }
static void Main(string[] args) { using (var command = new MoveDateCommandLine(args)) { CommandLineBootstrap.Start(command); } }
static void Main(string[] args) { using (var command = new PrettifyXmlCommandLine(args)) { CommandLineBootstrap.Start(command); } }
static void Main(string[] args) { using (CommandLine command = new RenameMediaCommandLine(args)) { CommandLineBootstrap.Start(command); } }
static void Main(string[] args) { using (var cmd = new GrepCopyCommandLine(args)) { CommandLineBootstrap.Start(cmd); } }
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); } }