Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created December 8, 2019 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/694948136705a521be0c9525fc1a9455 to your computer and use it in GitHub Desktop.
Save ryantm/694948136705a521be0c9525fc1a9455 to your computer and use it in GitHub Desktop.
/nix/store/p3jh9xmirkld6z77jbbw8fvwi56gcvaj-leatherman-1.9.1
├── include
│   ├── boost
│   │   └── nowide
│   │   ├── args.hpp
│   │   ├── cenv.hpp
│   │   ├── config.hpp
│   │   ├── convert.hpp
│   │   ├── cstdio.hpp
│   │   ├── cstdlib.hpp
│   │   ├── filebuf.hpp
│   │   ├── fstream.hpp
│   │   ├── integration
│   │   │   └── filesystem.hpp
│   │   ├── iostream.hpp
│   │   ├── stackstring.hpp
│   │   ├── system.hpp
│   │   ├── utf8_codecvt.hpp
│   │   └── windows.hpp
│   └── leatherman
│   ├── curl
│   │   ├── client.hpp
│   │   ├── export.h
│   │   ├── request.hpp
│   │   └── response.hpp
│   ├── dynamic_library
│   │   └── dynamic_library.hpp
│   ├── execution
│   │   └── execution.hpp
│   ├── file_util
│   │   ├── directory.hpp
│   │   └── file.hpp
│   ├── json_container
│   │   └── json_container.hpp
│   ├── locale
│   │   └── locale.hpp
│   ├── logging
│   │   └── logging.hpp
│   ├── ruby
│   │   └── api.hpp
│   ├── util
│   │   ├── environment.hpp
│   │   ├── option_set.hpp
│   │   ├── posix
│   │   │   └── scoped_descriptor.hpp
│   │   ├── regex.hpp
│   │   ├── scoped_env.hpp
│   │   ├── scoped_resource.hpp
│   │   ├── scope_exit.hpp
│   │   ├── strings.hpp
│   │   ├── time.hpp
│   │   ├── timer.hpp
│   │   ├── uri.hpp
│   │   └── windows
│   │   └── scoped_handle.hpp
│   └── vendor
│   ├── catch.hpp
│   └── rapidjson
│   ├── allocators.h
│   ├── document.h
│   ├── encodedstream.h
│   ├── encodings.h
│   ├── error
│   │   ├── en.h
│   │   └── error.h
│   ├── filereadstream.h
│   ├── filewritestream.h
│   ├── internal
│   │   ├── biginteger.h
│   │   ├── diyfp.h
│   │   ├── dtoa.h
│   │   ├── ieee754.h
│   │   ├── itoa.h
│   │   ├── meta.h
│   │   ├── pow10.h
│   │   ├── stack.h
│   │   ├── strfunc.h
│   │   └── strtod.h
│   ├── memorybuffer.h
│   ├── memorystream.h
│   ├── msinttypes
│   │   ├── inttypes.h
│   │   └── stdint.h
│   ├── prettywriter.h
│   ├── rapidjson.h
│   ├── reader.h
│   ├── stringbuffer.h
│   └── writer.h
└── lib
├── cmake
│   └── leatherman
│   ├── catch.cmake
│   ├── cmake
│   │   ├── cflags.cmake
│   │   ├── generate_translations.cmake
│   │   ├── GetGitRevisionDescription.cmake
│   │   ├── GetGitRevisionDescription.cmake.in
│   │   ├── leatherman.cmake
│   │   ├── leatherman_config.cmake
│   │   ├── normalize_pot.cmake
│   │   ├── options.cmake
│   │   └── pod2man.cmake
│   ├── curl.cmake
│   ├── dynamic_library.cmake
│   ├── execution.cmake
│   ├── file_util.cmake
│   ├── json_container.cmake
│   ├── LeathermanConfig.cmake
│   ├── LeathermanConfigVersion.cmake
│   ├── LeathermanLibraries.cmake
│   ├── LeathermanLibraries-release.cmake
│   ├── locale.cmake
│   ├── logging.cmake
│   ├── nowide.cmake
│   ├── rapidjson.cmake
│   ├── ruby.cmake
│   ├── scripts
│   │   └── cpplint.py
│   └── util.cmake
├── leatherman_curl.a
├── leatherman_dynamic_library.a
├── leatherman_execution.a
├── leatherman_file_util.a
├── leatherman_json_container.a
├── leatherman_locale.a
├── leatherman_logging.a
├── leatherman_ruby.a
└── leatherman_util.a
26 directories, 101 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment