Git Product home page Git Product logo

gls's Introduction

gls

made-with-Go GitHub go.mod Go version of a Go module Linux macOS

It’s ls + du + tree with interactive TUI on your terminal! gls is created to easily view, filter and search your files, folders and directories with their size whenever you need to open up some storage space. It wouldn’t be wrong to say that gls is a minimal yet powerful file manager CLI tool.

Table of Contents

Installation

Installing gls on your machine is pretty simple: just clone the repo and install cmd/gls.go:

$ git clone https://github.com/ozansz/gls
$ cd gls
$ go install ./cmd/gls.go

After you run go install command, an executable file name gls is created in $GOPATH/bin. Now, you can simply run gls in terminal:

$ gls

Usage

There are two running modes of gls: TUI and text-based.

The TUI mode is interactive and you will be able to use all of the features of gls, such as searching by text/regular expression, traversing on the file tree, creating/opening/deleting files and many other things, until you close the program.

The text mode however, is fairly simple and is a literal combination of running tree and du altogether, with some additional features.

Default usage (TUI)

The command below runs gls with TUI, which is the default mode. It parses the file tree under the specified path along with the file and folder sizes on disk, then shows the tree view of the parsed tree.

gls -path ~/Downloads

Screenshot of the TUI mode of gls

Text mode

The command below does the same parsing process as the command above does. Except, this one just dumps the parsed tree as a the tree command does with the file/folder sizes and permissions, to the terminal.

gls -nogui -path ~/Documents

Features

gls includes (and still continues to include more) several features that mimic a normal file manager:

  • List the files and folders under the specified path, in tree view
  • Show current file info: size on disk, permissions, path, MIME type and last modification
  • Sort the tree by the size on disk
  • Search files/folders by name, using both plaintext and regular expressions
  • Ignore specific files/folders by using regular expressions, similar to .gitignore style
    • Default ignore file is .glsignore, but infinitely many other ignore files can be specified through the CLI arguments
  • Open files and folders by default programs or executables that you specify
  • Copy/paste and move files and folders
  • Remove files
  • Create (similar to touch) and open files to edit
  • Walk on the file tree, collapse and expand nodes easily

TUI shortcuts

Shortcut Command Description
q, ESC, ˆC quit Exits the program
c collapse Collapses all nodes in the file tree view
e expand Expands all nodes in the file tree view
s search Opens modal to search nodes (files and folders) by name
r regex search Same as search, but you can search using regular expressions
x restore Loads the original file tree view, mostly used after search and regex search
o open Opens the selected (on hover) file/folder with the default program
p open Opens modal to specify the executable path which will be used to open the selected (on hover) file/folder
BACKSPACE , DEL remove Removes the selected (on hover) file. Folder removal is currently not supported
m mark Marks/unmarks the selected (on hover) file or folder. Marked nodes can be used later for duplicate and move
u unmark Unmarks all the marked files and folders
n new Create and (optionally) open file (will be available in next update)
d duplicate Copy/pastes the marked files and folders to a specified destination. The destination is specified by the text input of the opened modal (will be available in next update)
v move Moves the marked files and folders to a specified destination. The destination is specified by the text input of the opened modal (will be available in next update)
TAB, SPACE, ENTER toggle expand node Expands the node if currently collapsed, and vice versa, the selected (on hover) file or folder
ARROW KEYS, SCROLL navigate Navigates between nodes in the file tree view

Configuration

You can freely change the key bindings and shortcuts or configure the program for your needs from gui/core.go .

After your changes, run

go build cmd/gls.go

in the project directory.

In addition, if you think that your configurations or other changes seem necessary to improve the project, your contributions will be welcomed :)

Command line arguments

-debug
    	Increase log verbosity
-fmt string
   		size formatter, one of bytes, pow10 or none (default "bytes")
-ignore string
    	Comma-separated ignore files that specify which files folders to exclude
-nogui
    	text-only mode
-path string
    	path to run on (required)
-sort
    	sort nodes by size (default true)
-thresh string
    	size filter threshold, e.g. 10M, 100K, etc.

You can also read this section from terminal by using gls without parameters.

How to Contribute

You are very welcome to contribute to gls! Here are a few steps to guide you how to start contributing:

  1. Check the open issues tab to see if there are any issue you may be interested in fixing. You can also list the issues with only the good-first-issue tag

  2. Check the contributing guide for more explanation on setting up the development environment, opening the PR, etc.

gls's People

Contributors

cagriefegunay avatar gozeloglu avatar ozansz avatar rkursatv avatar skofli avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.