A terminal-based file explorer.
This program is made with the objective of providing a lightweight file explorer, accessible via terminal interface and more user-friendly than the traditional commands.
A dependency for this program is ncurses
- g++
- ncurses headers and binaries
- source code
g++ -std=c++17 -o bin/zExplorer src/*.cpp -lncurses -Wl,-rpath=. -static-libgcc -static-libstdc++
g++ -std=c++17 -I<path to ncurses headers> -o bin/zExplorer src/*.cpp -lncurses -DNCURSES_STATIC -static-libgcc -static-libstdc++
Any bugfixes and pull requests, especially on managing errors, are appreciated.