https://github.com/lainq/fe
Fe is a simple tool which you can use to move through your directories from the command line
https://github.com/lainq/fe
cli fe file-explorer go terminal
Last synced: over 1 year ago
JSON representation
Fe is a simple tool which you can use to move through your directories from the command line
- Host: GitHub
- URL: https://github.com/lainq/fe
- Owner: lainq
- License: mit
- Created: 2021-12-30T05:57:34.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-30T08:57:52.000Z (over 4 years ago)
- Last Synced: 2023-07-29T17:36:04.252Z (almost 3 years ago)
- Topics: cli, fe, file-explorer, go, terminal
- Language: Go
- Homepage: https://github.com/pranavbaburaj/fe
- Size: 14.6 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Fe
- 
- 
- 
## What is `Fe` ?
Fe is a simple tool which you can use to move through your directories from the command line
## Video demo
[![asciicast]()](https://user-images.githubusercontent.com/70764593/147730564-f0db7b9a-c91f-4a71-86df-60954e3cebc5.mp4)
## Installation
### Normal installation
Binaries of the package can be collected from the [releases](https://github.com/pranavbaburaj/fe/releases/) page
### Build from source
Inorder to build from source, make sure to have go and git installed.
```sh
sudo apt update
sudo apt install go git
```
Now, clone the repository and run `go build`
```sh
# clone the repository
git clone https://github.com/pranavbaburaj/fe.git
cd fe
# Install the dependencies
go get
# Build it into a binary
go build
```
[Learn more](https://www.digitalocean.com/community/tutorials/how-to-build-go-executables-for-multiple-platforms-on-ubuntu-16-04) about compiling for different platforms