Use ssh instead of NFS for remote files

This commit is contained in:
Thomas Avé 2024-04-24 00:15:00 +02:00
parent 295d469407
commit a80781ede9
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ function find_global() {
for i in "$search_dirs[@]"; do
if [ -d $i ]; then
PATHS="$PATHS$i\n"
PATHS+="$(fd . $i -t $file_type -d 8)"
PATHS+="$(ssh mallorea fdfind . $i -t $file_type -d 8)"
fi
done
echo -e "$PATHS" > $FZY_CACHE