1.0.3 • Published 6 years ago

lsre v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

LSRE: a pretty replacement for ls

Install

$ yarn global add lsre // or npm i -g lsre for plebs

Usage

Usage:
  $ lsre <directory>

  If directory is not specified it will
  display the contents of the current folder

Flags:
  --all, -a show all files
  --hide-directories, -d hide subdirectories
  --table, -t display in a table

Examples:
  $ lsre Display contents of current folder
  $ lsre folder Display contents of ./folder
  $ lsre -a Display all contents in current folder including hidden files
  $ lsre .. Display contents of parent folder
  $ lsre -t Display contents of current folder in a table
  $ lsre -tad Display contents of current folder in a table, excluding subdirectories but showing hidden files