about summary refs log tree commit diff stats
path: root/home-manager/packages/scripts/wrappers/ll
blob: f1d96f1597f83daf31d2a8bb3a3d8a7a05ba7af0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="1.1.3" . %SHELL_LIBRARY_PATH

last_directory="$(mktmp)"

command lf -last-dir-path="$last_directory" "$@"

dir="$(cat "$last_directory")"
cd "$dir" || die "$dir does not exist!"

# vim: ft=sh