Skip to content

Introduction

Unix ls, find, and tree commands combined into a Python module.

Warning

Not yet done, not yet released, no commitment to finish.

lsutil combines commonly used functionalities of the ls, find, and tree commands. The functionality is approximately similar to

find <find options> -exec ls <ls options> \{\} \;

with perhaps better performance and ease of use.

Installation

The package is available on pypi.org. Install the package by

pip install lsutil

Command line

The command lsutil is available as a script.

Python module

import lsutil

lsutil.ls()

Developments

Source Code:  https://github.com/koobedoc/lsutil