https://github.com/aysilsimgekaracan/fexplorer
Simple File Explorer for Linux
https://github.com/aysilsimgekaracan/fexplorer
cli file-browser file-explorer file-manager filebrowser fileexplorer pick python
Last synced: 6 months ago
JSON representation
Simple File Explorer for Linux
- Host: GitHub
- URL: https://github.com/aysilsimgekaracan/fexplorer
- Owner: aysilsimgekaracan
- License: mit
- Created: 2021-11-17T13:25:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-20T06:40:40.000Z (over 3 years ago)
- Last Synced: 2024-08-10T09:14:57.805Z (10 months ago)
- Topics: cli, file-browser, file-explorer, file-manager, filebrowser, fileexplorer, pick, python
- Language: Python
- Homepage:
- Size: 72.3 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple File Explorer
## About The Project
[](https://badge.fury.io/py/fexplorer)It is a simple cli file explorer project that I made for my school project.

## Installation
```python
pip install fexplorer
```
## Usage
```python
fexplorer path mode(optional, default="n")
```
When mode is n (default),
- It reads the file contents (if the file is readible).
- You have options to open vi or you can go back.When mode is e,
- The custom script you write will be run.
- Edit [customscript.py](https://github.com/aysilsimgekaracan/fexplorer/blob/main/fexplorer/customscript.py) file.To start with your current directory, you can simply run:
```python
fexplorer .
```If you want to run your script,
```python
fexplorer . --m e
```## Instructions
- Navigation is done with the arrow keys [←↑→↓]
- If you see => as an indicator, you first need to select a file with SPACE and then ENTER.
- If you see * as an indicator, only press ENTER.
- To edit a file: First select the file with SPACE, then press E.## Buit With
- [Python](https://www.python.org)
- [Pick](https://github.com/wong2/pick)