mirror of
https://github.com/nsnail/dot.git
synced 2025-04-15 18:02:51 +08:00
11 lines
412 B
C#
11 lines
412 B
C#
namespace Dot.TrimUtf8Bom;
|
|
|
|
[Verb("trim-utf8-bom", HelpText = "移除文件的uf8 bom")]
|
|
public class Option : IOption
|
|
{
|
|
[Option('f', "filter", Required = false, HelpText = "文件通配符", Default = "*.*")]
|
|
public string Filter { get; set; } //normal options here
|
|
|
|
[Option('p', "path", Required = false, HelpText = "要处理的目录路径", Default = ".")]
|
|
public string Path { get; set; }
|
|
} |