warcat 0.3.4

Command-line tool and library for handling Web ARChive (WARC) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if (args.Length == 0)
{
    System.Console.WriteLine("Specify 'encode' or 'decode'");
    return 1;
}

if (args[0] == "encode")
{
    WarcatExample.Encode.Run();
}
else
{
    WarcatExample.Decode.Run();
}

return 0;