fff
fff copied to clipboard
📁 A simple file manager written in bash.
This patch makes it so that Bash users need only run this to enable the change directory feature: ```sh . fff ``` It still respects the environment, so this invocation...
I saw the issue #122 and i thought i might try to give a go. There might be bugs so feel free to point them out :D 
This feature enables the user to share `marked_files` array between all `fff` sessions. It allows marking some files in one session, and execute action in another. It's handy when working...
It seems that when the command has a space it simply says that command isn't found ``` /var/$USER/cerqueira/.local/bin/fff: line 608: toolbox run -c dev nvim: command not found ```
Do you know if there is a fff package for Fedora?
When pressing "p" after having marked deletable files with "d" before, I'll find the following error message in my terminal (after exiting **fff** with "q"): ``` [cm@qube] ~ >: fff...
I think that it would be nice if the file's location from `fff -p` could be specified. Example: ``` $ fff -p /tmp/fff ```
When pressed enough times, down arrow key, which is seen as '\e[B' sometime mis-interpreted as B triggering bulk-rename-all function. My guess is this may also happen with other special keys,...
example code ``` ## sort by time in downloads dirs IFS=$'\n' if [[ $PWD == ~/Downloads* ]]; then dirs=($(stat -c '%Y=%n' "${dirs[@]}" | sort -nr | cut -d '=' -f2))...