Terminal file manager
Google Groups | Wiki | #lf (on Libera.Chat) | #lf:matrix.org (with IRC bridge)
This is a work in progress. Use at your own risk.
lf
(as in "list files") is a terminal file manager written in Go with a heavy inspiration from ranger file manager.
See faq for more information and tutorial for a gentle introduction with screencasts.
See packages for community maintained packages.
See releases for pre-built binaries.
Building from the source requires Go.
On Unix (Go version < 1.17):
env CGO_ENABLED=0 GO111MODULE=on go get -u -ldflags="-s -w" github.com/gokcehan/lf
On Unix (Go version >= 1.17):
env CGO_ENABLED=0 go install -ldflags="-s -w" github.com/gokcehan/[email protected]
On Windows cmd
(Go version < 1.17):
set CGO_ENABLED=0
set GO111MODULE=on
go get -u -ldflags="-s -w" github.com/gokcehan/lf
On Windows cmd
(Go version >= 1.17):
set CGO_ENABLED=0
go install -ldflags="-s -w" github.com/gokcehan/[email protected]
On Windows powershell
(Go version < 1.17):
$env:CGO_ENABLED = '0'
$env:GO111MODULE = 'on'
go get -u -ldflags="-s -w" github.com/gokcehan/lf
On Windows powershell
(Go version >= 1.17):
$env:CGO_ENABLED = '0'
go install -ldflags="-s -w" github.com/gokcehan/[email protected]
After the installation lf
command should start the application in the current directory.
Run lf -help
to see command line options.
Run lf -doc
to see the documentation.
See etc directory to integrate lf
to your shell and/or editor.
Example configuration files along with example colors and icons files can also be found in this directory.
See integrations to integrate lf
to other tools.
See tips for more examples.
See contributing for guidelines.