diff --git a/PasteIntoFile/Program.cs b/PasteIntoFile/Program.cs index 202ab20..9c1b8a9 100644 --- a/PasteIntoFile/Program.cs +++ b/PasteIntoFile/Program.cs @@ -37,6 +37,10 @@ static void Main(string[] args) } return; } + else if (args[0][0] == '-') + { + return; + } Application.Run(new frmMain(args[0])); } else