An open API service indexing awesome lists of open source software.

https://github.com/mansi-k/linux_terminalfileexplorer

Developed a program that displays the file system on the terminal and helps users navigate through it using special keys, open files and execute basic file commands
https://github.com/mansi-k/linux_terminalfileexplorer

command-execution file-explorer filesystem-navigation interrupt-handler scratch-implementation system-calls

Last synced: 9 months ago
JSON representation

Developed a program that displays the file system on the terminal and helps users navigate through it using special keys, open files and execute basic file commands

Awesome Lists containing this project

README

          

# Normal Mode
1) Files displayed alphabetically
2) Scrolling : 1 file scrolled aa a time. 'l' for scrolling down, 'k' for scrolling up.
3) Opening files : in their default apps (as discussed in MS-Teams)
4) Back and forward implemented same as we observe in Linux GUI file explorer app
5) Assumed : application home = CWD (if path was not given) = given path (if given) while running the program.

# Command Mode
1) If changes are made in current dir (shown currently on terminal), the changes would be updated (on terminal) when user comes out of the command mode by pressing ESC.
2) Goto would update the terminal with new path immediately.
3) All paths would be relative to Application home.