├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── main.go └── sample.urls /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercdh/dirlstr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercdh/dirlstr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercdh/dirlstr/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/cybercdh/dirlstr 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercdh/dirlstr/HEAD/main.go -------------------------------------------------------------------------------- /sample.urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercdh/dirlstr/HEAD/sample.urls --------------------------------------------------------------------------------