This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# A simple script to make fzf a fuzzy-file explorer | |
# After the program exits, it should be cleared with tput rmcup, otherwise the | |
# terminal stays in alternate screen mode | |
old_folder=$(pwd) | |
cur_folder="$old_folder" | |
tree_depth=1 | |
while true | |
do |
OlderNewer