Skip to content

Instantly share code, notes, and snippets.

View aayushKumarJarvis's full-sized avatar
💭
I may be slow to respond.

Aayush Kumar aayushKumarJarvis

💭
I may be slow to respond.
View GitHub Profile
@aayushKumarJarvis
aayushKumarJarvis / tar-gz-reader.go
Created June 12, 2016 09:09 — forked from indraniel/tar-gz-reader.go
Reading through a tar.gz file in Go / golang
package main
import (
"archive/tar"
"compress/gzip"
"flag"
"fmt"
"io"
"os"
)