iFurySt's picture
Upload AgentBench os-std datasets
ef8d53e verified
raw
history blame
181 Bytes
from sys import argv
def norm_newline(s):
return s.replace("\r\n", "\n").replace("\r", "\n")
if norm_newline(argv[1]).strip() == norm_newline(argv[2]).strip():
exit(0)
exit(1)