The tar class implements a simplistic version of the traditional UNIX tar command. It currently supports creating, listing, and extracting from archives. It supports GZIP, unix compress and bzip2 compression GNU long filename extensions are supported, POSIX extensions are not yet supported... See the help (-? or --help) for option details.
Ejemplo n.º 1
0
 /// <summary>
 /// The main entry point of the tar class.
 /// </summary>
 public static void Main(string[] argv)
 {
     var tarApp = new Cmd_Tar();
     tarApp.InstanceMain(argv);
 }
Ejemplo n.º 2
0
    /// <summary>
    /// The main entry point of the tar class.
    /// </summary>
    public static void Main(string[] argv)
    {
        var tarApp = new Cmd_Tar();

        tarApp.InstanceMain(argv);
    }