Skip to content

Introduction

The lsuitl package combines Unix ls, find, and tree into a Python module and a command.

Warning

Not yet done (has not reached version 0.1.0), 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. Some unique functionalities are:

  • ignore files

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