Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created September 29, 2019 05:05
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/c33c9600c41199c0ba6dbc210a436ccf to your computer and use it in GitHub Desktop.
Save ryantm/c33c9600c41199c0ba6dbc210a436ccf to your computer and use it in GitHub Desktop.
/nix/store/fyjixjqbilir8x9j8scqr42iqjix4ar2-s3ql-3.3
├── bin
│   ├── fsck.s3ql
│   ├── mkfs.s3ql
│   ├── mount.s3ql
│   ├── s3qladm
│   ├── s3qlcp
│   ├── s3qlctrl
│   ├── s3qllock
│   ├── s3ql_oauth_client
│   ├── s3qlrm
│   ├── s3qlstat
│   ├── s3ql_verify
│   └── umount.s3ql
├── lib
│   └── python3.7
│   └── site-packages
│   ├── s3ql
│   │   ├── adm.py
│   │   ├── backends
│   │   │   ├── common.py
│   │   │   ├── comprenc.py
│   │   │   ├── gs.py
│   │   │   ├── __init__.py
│   │   │   ├── local.py
│   │   │   ├── pool.py
│   │   │   ├── __pycache__
│   │   │   │   ├── common.cpython-37.pyc
│   │   │   │   ├── comprenc.cpython-37.pyc
│   │   │   │   ├── gs.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── local.cpython-37.pyc
│   │   │   │   ├── pool.cpython-37.pyc
│   │   │   │   ├── rackspace.cpython-37.pyc
│   │   │   │   ├── s3c.cpython-37.pyc
│   │   │   │   ├── s3.cpython-37.pyc
│   │   │   │   ├── swift.cpython-37.pyc
│   │   │   │   └── swiftks.cpython-37.pyc
│   │   │   ├── rackspace.py
│   │   │   ├── s3c.py
│   │   │   ├── s3.py
│   │   │   ├── swiftks.py
│   │   │   └── swift.py
│   │   ├── block_cache.py
│   │   ├── calc_mro.py
│   │   ├── common.py
│   │   ├── cp.py
│   │   ├── ctrl.py
│   │   ├── daemonize.py
│   │   ├── database.py
│   │   ├── deltadump.cpython-37m-x86_64-linux-gnu.so
│   │   ├── exit_stack.py
│   │   ├── fsck.py
│   │   ├── fs.py
│   │   ├── inherit_docstrings.py
│   │   ├── __init__.py
│   │   ├── inode_cache.py
│   │   ├── lock.py
│   │   ├── logging.py
│   │   ├── metadata.py
│   │   ├── mkfs.py
│   │   ├── mount.py
│   │   ├── multi_lock.py
│   │   ├── oauth_client.py
│   │   ├── parse_args.py
│   │   ├── __pycache__
│   │   │   ├── adm.cpython-37.pyc
│   │   │   ├── block_cache.cpython-37.pyc
│   │   │   ├── calc_mro.cpython-37.pyc
│   │   │   ├── common.cpython-37.pyc
│   │   │   ├── cp.cpython-37.pyc
│   │   │   ├── ctrl.cpython-37.pyc
│   │   │   ├── daemonize.cpython-37.pyc
│   │   │   ├── database.cpython-37.pyc
│   │   │   ├── exit_stack.cpython-37.pyc
│   │   │   ├── fsck.cpython-37.pyc
│   │   │   ├── fs.cpython-37.pyc
│   │   │   ├── inherit_docstrings.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── inode_cache.cpython-37.pyc
│   │   │   ├── lock.cpython-37.pyc
│   │   │   ├── logging.cpython-37.pyc
│   │   │   ├── metadata.cpython-37.pyc
│   │   │   ├── mkfs.cpython-37.pyc
│   │   │   ├── mount.cpython-37.pyc
│   │   │   ├── multi_lock.cpython-37.pyc
│   │   │   ├── oauth_client.cpython-37.pyc
│   │   │   ├── parse_args.cpython-37.pyc
│   │   │   ├── remove.cpython-37.pyc
│   │   │   ├── statfs.cpython-37.pyc
│   │   │   ├── umount.cpython-37.pyc
│   │   │   └── verify.cpython-37.pyc
│   │   ├── remove.py
│   │   ├── statfs.py
│   │   ├── umount.py
│   │   └── verify.py
│   └── s3ql-3.3.dist-info
│   ├── AUTHORS
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   ├── WHEEL
│   └── zip-safe
└── nix-support
└── propagated-build-inputs
10 directories, 97 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment