manager/config/bash/bashrc.d/lf
2022-05-21 09:46:26 +01:00

18 lines
352 B
Bash

#!/bin/bash
lf () {
tmp="$(mktemp)"
logpath="${LOG_HOME}/lf.log"
command lf --last-dir-path="$tmp" --log="$logpath" "$@"
if [ -f "$tmp" ]; then
dir="$(cat "$tmp")"
rm -f "$tmp"
if [ -d "$dir" ]; then
if [ "$dir" != "$(pwd)" ]; then
cd "$dir"
fi
fi
fi
}