在Unix中,我可以运行myscript '"test"',我会得到"test".
在Windows中,cmd我得到了'test'.
如何将双引号作为参数传递?我想知道如何从cmd窗口手动执行此操作,因此我不必编写程序来测试我的程序.
档案1
A
B
C
Run Code Online (Sandbox Code Playgroud)
档案2
B
C
D
Run Code Online (Sandbox Code Playgroud)
file1 + file2 =
A
B
C
D
Run Code Online (Sandbox Code Playgroud)
是否可以使用cmd.exe?
I have a text file that is over 50GB. It contains many lines, each line is on average around 15 characters. I want each line to be unique (case sensitive). So if a line is exactly the same as another one, it must be removed, without changing the order of the other lines or sorting the file in any way.
My question is different from others because I have a huge file that cannot be handled with other solutions that …